export declare class CreateQualityCheckDto {
    orderItemId: string;
    status: 'pass' | 'fail';
    notes: string;
}
