/// <reference types="react" />
import { WeatherData, WeatherWidgetTheme } from './types/weatherWidget';
interface WeatherHourlyProps {
    hourly: WeatherData['hourly'];
    from: number;
    to: number;
    theme: WeatherWidgetTheme;
}
declare function WeatherHourly({ hourly, from, to, theme }: WeatherHourlyProps): JSX.Element;
export default WeatherHourly;
