export declare class StaffDto {
    id: number;
    employee_id: string;
    lang_id: number;
    department_id: number;
    staff_designation_id: number;
    specialist: string;
    qualification: string;
    work_exp: string;
    specialization: string;
    name: string;
    surname: string;
    father_name: string;
    mother_name: string;
    contact_no: string;
    emergency_contact_no: string;
    email: string;
    dob: Date;
    marital_status: string;
    date_of_joining: Date;
    date_of_leaving: Date;
    local_address: string;
    permanent_address: string;
    note: string;
    image: string;
    password: string;
    gender: string;
    blood_group: number;
    account_title: string;
    bank_account_no: string;
    bank_name: string;
    ifsc_code: string;
    bank_branch: string;
    payscale: string;
    basic_salary: string;
    epf_no: string;
    contract_type: string;
    shift: string;
    location: string;
    facebook: string;
    twitter: string;
    linkedin: string;
    instagram: string;
    resume: string;
    joining_letter: string;
    resignation_letter: string;
    other_document_name: string;
    other_document_file: string;
    user_id: number;
    is_active: number;
    verification_code: number;
    zoom_api_key: string;
    zoom_api_secret: string;
    pan_number: string;
    identification_number: number;
    local_identification_number: number;
    created_at: Date;
    hospital_id: number;
    staff_id: number;
    Health_Professional_Registry: string;
    languagesKnown: string;
    role_id: number;
    hos_staff_role_id: number;
    certificates: any;
    leave_type_id: number;
    alloted_leave: string;
    hos_staff_leave_details_id: number;
    leave_types: any;
}
export declare class CountDto {
    details: StaffDto[];
    total: number;
}
