import { CallProps, ShowWeatherProps } from "./types"; export declare function getWeather(args: CallProps): Promise; export declare function dailyForecast(args: CallProps): Promise; export declare function fiveDaysForecast(args: CallProps): Promise; export declare class showWeather implements ShowWeatherProps { name: string; country: string; temp: number; temp_min: number; temp_max: number; feels_like: number; wind: number; pressure: number; humidity: number; description: string; icon: string; constructor(); } //# sourceMappingURL=weather.d.ts.map