declare class WeatherCoordinatesDto { lon: number; lat: number; } declare class WeatherConditionDto { id: number; main: string; description: string; icon: string; } declare class WeatherMainDto { temp: number; feels_like: number; pressure: number; humidity: number; temp_min: number; temp_max: number; sea_level?: number; grnd_level?: number; } declare class WeatherWindDto { speed: number; deg: number; gust?: number; } declare class WeatherCloudsDto { all: number; } declare class WeatherRainDto { '1h': number; } declare class WeatherSnowDto { '1h': number; } declare class WeatherSysDto { type: number; id: number; country: string; sunrise: number; sunset: number; } export declare class OpenWeatherMapWeatherResponseDto { coord: WeatherCoordinatesDto; weather: WeatherConditionDto[]; base: string; main: WeatherMainDto; visibility: number; wind: WeatherWindDto; clouds: WeatherCloudsDto; rain?: WeatherRainDto; snow?: WeatherSnowDto; dt: number; sys: WeatherSysDto; timezone: number; id: number; name: string; cod: number; } export {};