export declare class CreateQualityCheckDto {
    orderItemId: string;
    status: 'pass' | 'fail';
    notes?: string;
}
export declare class UpdateQualityCheckDto {
    status: 'pending' | 'passed' | 'failed' | 'rejected';
    notes?: string;
}
export declare class CreateInspectionDto {
    inspector: string;
    results: any;
    notes?: string;
}
export declare class InspectionResultDto {
    criterionId: string;
    value: string;
    status: 'pass' | 'fail' | 'warning';
    notes?: string;
}
export declare class SubmitInspectionDto {
    templateId: string;
    results: InspectionResultDto[];
    timestamp: string;
}
