import { NcEntity } from './nc.entity';
export declare class NcrEntryEntity {
    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: string;
    created_at: Date;
    updated_at: Date;
    nc: NcEntity;
}
