import { WeatherLocationEntity } from '../../../modules/weather/entities/locations.entity'; import { OpenWeatherMapLocationType } from '../weather-openweathermap.constants'; export declare class OpenWeatherMapLocationEntity extends WeatherLocationEntity { get type(): string; locationType: OpenWeatherMapLocationType; latitude: number | null; longitude: number | null; cityName: string | null; countryCode: string | null; cityId: number | null; zipCode: string | null; }