export declare class CreateEscortDto {
    customer_id: number;
    escort_id?: string;
    name?: string;
    relation?: string;
    gender?: string;
    date_of_birth?: string;
    passport_number?: string;
    country_code?: string;
    phone_number?: string;
    email?: string;
    visa_start_date?: string;
    visa_end_date?: string;
    is_sponsered?: string;
    should_remove?: boolean;
    escort_type?: string;
}
