export type WeatherStatus = { temperature: number; type: WeatherType; windDirection: number; windSpeed: number; }; export type WeatherType = 'clear' | 'partly-cloudy' | 'overcast' | 'fog' | 'drizzle' | 'rain' | 'heavy-rain' | 'freezing-rain' | 'snow' | 'heavy-snow' | 'thunderstorm' | 'hail' | 'unknown'; export type WeatherStatusResult = { success: boolean; data?: WeatherStatus; error?: string; }; export default function getLocationWeather(): Promise;