import { CreateLocationDto } from '../../../modules/weather/dto/create-location.dto'; import { OpenWeatherMapLocationType, WEATHER_OPENWEATHERMAP_PLUGIN_TYPE } from '../weather-openweathermap.constants'; export declare class CreateOpenWeatherMapLocationDto extends CreateLocationDto { readonly type: typeof WEATHER_OPENWEATHERMAP_PLUGIN_TYPE; locationType: OpenWeatherMapLocationType; latitude?: number; longitude?: number; cityName?: string; countryCode?: string; cityId?: number; zipCode?: string; }