export interface WeatherTheme {
    type: "sunny" | "rainy" | "cloudy" | "snowy" | string;
    colors: {
        background: string;
        text: string;
        accent: string;
    };
}
export declare function useWeatherTheme(apiKey: string, location: string): WeatherTheme | null;
