import { Customer } from "src/modules/customers/entities/customer.entity";
import { Trip } from "src/modules/trips/entities/trip.entity";
export declare class Escort {
    id: number;
    customer_id: number;
    name?: string;
    relation?: string;
    gender?: string;
    date_of_birth?: Date;
    passport_number?: string;
    country_code?: string;
    phone_number?: string;
    email?: string;
    visa_start_date?: Date;
    visa_end_date?: Date;
    is_sponsered?: boolean;
    escort_type?: string;
    created_at: Date;
    updated_at: Date;
    deleted_at: Date;
    customer: Customer;
    trips: Trip[];
}
