export declare class CreateHospitalDto {
    name: string;
    address: string;
    city_id: number;
    state_id: number;
    country_id: number;
    zip_code: string;
    country_code: string;
    phone_number: string;
    email: string;
    is_partner: boolean;
    latitude: string;
    longitude: string;
    place_id: string;
}
