/**
 * weather.ts — Weather data provider for HCW (Home Crowd + Weather) insight.
 *
 * Uses Open-Meteo API (free, no API key) for forecast weather data.
 * Provides current + game-time conditions for outdoor venues.
 */
export interface WeatherData {
    temperature_f: number;
    wind_mph: number;
    wind_direction: string;
    humidity: number;
    precipitation_chance: number;
    conditions: string;
    feels_like_f: number;
    visibility_miles: number;
}
export interface GameWeather {
    current: WeatherData;
    gameTime: WeatherData | null;
    alerts: string[];
    source: string;
}
/**
 * Fetch weather data for a venue location + game time.
 * Uses Open-Meteo forecast API with hourly data.
 */
export declare function fetchGameWeather(lat: number, lon: number, gameTimeIso?: string): Promise<GameWeather>;
//# sourceMappingURL=weather.d.ts.map