export default class LogService {
    static error(message: string): void;
    static success(message: string): void;
    static help(): void;
    private static colorTemperature;
    private static getIcon;
    static showWeather({ name, weather: [{ description, icon }], wind: { speed }, main: { temp, feels_like, humidity }, }: {
        name: string;
        weather: [{
            description: string;
            icon: string;
        }];
        wind: {
            speed: string;
        };
        main: {
            temp: string;
            feels_like: string;
            humidity: string;
        };
    }): void;
}
