import { UpdateLocationDto } from '../../../modules/weather/dto/update-location.dto'; import { OpenWeatherMapLocationType } from '../weather-openweathermap.constants'; export declare class UpdateOpenWeatherMapLocationDto extends UpdateLocationDto { locationType?: OpenWeatherMapLocationType; latitude?: number; longitude?: number; cityName?: string; countryCode?: string; cityId?: number; zipCode?: string; }