export declare class PreviousNcEntity {
    id: number;
    client_id: number | null;
    serve_id: number | null;
    auditee_name: string | null;
    audit_type: string;
    nc_type: string;
    status: 'open' | 'closed';
    follow_up_date: string | null;
    followed_up_by: number | null;
    final_closure_pdf: string | null;
    follow_up_notes: string | null;
    closed_by: number | null;
    closed_at: Date | null;
    due_date: string | null;
    remark: string | null;
    created_at: Date;
    updated_at: Date;
}
