import { CreateLocationDto } from '../../../modules/weather/dto/create-location.dto'; import { WEATHER_OPENWEATHERMAP_ONECALL_PLUGIN_TYPE } from '../weather-openweathermap-onecall.constants'; export declare class CreateOpenWeatherMapOneCallLocationDto extends CreateLocationDto { readonly type: typeof WEATHER_OPENWEATHERMAP_ONECALL_PLUGIN_TYPE; latitude: number; longitude: number; countryCode?: string; }