import { City } from "src/modules/city/entities/city.entity";
import { State } from "src/modules/state/entities/state.entity";
import { HospitalContact } from "src/modules/hospital-contacts/entities/hospital-contact.entity";
import { TripIntermediateStop } from "src/modules/trip-intermediate-stops/entities/trip-intermediate-stop.entity";
import { Country } from "src/modules/country/entities/country.entity";
import { Customer } from "src/modules/customers/entities/customer.entity";
import { EpisodeLog } from "src/modules/customers/entities/episode_log.entity";
export declare class Hospital {
    id: number;
    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;
    status: string;
    created_at: Date;
    updated_at: Date;
    deleted_at: Date;
    city: City;
    state: State;
    country: Country;
    contacts: HospitalContact[];
    customer: Customer[];
    logs: EpisodeLog[];
    trip_intermediate_stop: TripIntermediateStop[];
}
