import { AuditMode, CertificationType, ClientGroup } from '../entities/audit-request.entity';
import { AuditeeDto } from './create-audit-request.dto';
export declare class BatchClientDto {
    company_id?: number;
    company_branch_id?: number;
    branch_name?: string;
    company_name: string;
    company_source?: string;
    client_ref_id?: number;
    auditee_name: string;
    auditee_contact: string;
    auditee_email: string;
    auditees?: AuditeeDto[];
    standard_ids: number[];
    certification_type: CertificationType;
    mode: AuditMode;
    scope_of_work?: string;
    previous_cert_no?: string;
    proposed_date: string;
    proposed_time: string;
    location: string;
    marketing_remarks?: string;
}
export declare class CreateBatchAuditRequestDto {
    client_group: ClientGroup;
    accreditation: string;
    marketing_remarks?: string;
    clients: BatchClientDto[];
}
