import { CreateLocationDto } from '../../../modules/weather/dto/create-location.dto'; import { WEATHER_OPEN_METEO_PLUGIN_TYPE } from '../weather-open-meteo.constants'; export declare class CreateOpenMeteoLocationDto extends CreateLocationDto { readonly type: typeof WEATHER_OPEN_METEO_PLUGIN_TYPE; latitude: number; longitude: number; countryCode?: string; }