import { BaseEntity } from '../database/base.entity';
import { DestinationEntity } from './destination.entity';
export declare class HotelEntity extends BaseEntity {
    destination: DestinationEntity;
    destination_id: string;
    short_code: string;
    name: string;
    address: string;
    location: string | null;
    gps_latitude: string | null;
    gps_longitude: string | null;
    pickup_gate: string | null;
    dropoff_gate: string | null;
    contact_person: string;
    contact_phone: string | null;
    special_instructions: string | null;
    meeting_point: string | null;
    is_active: boolean;
}
