export declare class PreviousNcrEntryEntity {
    id: number;
    nc_id: number;
    nc_type: string | null;
    ncr_statement: string | null;
    criteria_clause: string | null;
    corrective_action: string | null;
    document_path: string | null;
    status: 'open' | 'closed' | 'pending';
    created_at: Date;
    updated_at: Date;
}
