export declare class UpdateCustomerDto {
    customer_name?: string;
    customer_type?: string;
    date_of_birth?: string;
    pricing_city_id?: number;
    gender?: string;
    primary_address?: string;
    secondary_address?: string;
    zip_code?: string;
    visa_start_date?: string;
    visa_end_date?: string;
    country_code: string;
    phone_number?: string;
    email?: string;
    place_id?: string;
    tags?: any[];
    reference_number?: string;
    prn_number?: string;
    episode?: string;
    log_issue_at?: string;
    log_expire_at?: string;
    letter_of_guarantee?: string;
    is_medical_tourist?: string;
    department?: string;
    job_title?: string;
    status?: string;
    current_step?: number;
    client_company_id?: number;
    client_contact_id?: number;
    city_id?: number;
    state_id?: number;
    dispatcher_id?: number;
    country_id?: number;
    hospital_id?: number;
    vehicle_type_id?: number;
    latitude?: number;
    longitude?: number;
    profile_photo?: string;
}
