/// <reference types="react" />
import { WeatherData, DailyWeatherData, CurrentWeatherData } from './types/weatherWidget';
interface WeatherHeaderProps {
    today: DailyWeatherData;
    current: CurrentWeatherData;
    timezone: WeatherData['timezone'];
}
declare function WeatherHeader({ today, current, timezone, }: WeatherHeaderProps): JSX.Element;
export default WeatherHeader;
