declare class CreateNcFindingDto {
    nc_type?: string;
    ncr_statement: string;
    criteria_clause?: string;
    corrective_action?: string;
    status?: 'open' | 'closed' | 'pending';
}
export declare class CreateNcDto {
    audit_id: number;
    company_id?: number | null;
    auditee_name?: string | null;
    audit_type?: string | null;
    nc_type: string;
    status?: 'open' | 'closed';
    follow_up_date?: string | null;
    due_date?: string | null;
    follow_up_notes?: string | null;
    remark?: string | null;
    findings: CreateNcFindingDto[];
}
export {};
