/// <reference types="react" />
import { DailyWeatherData } from './types/weatherWidget';
interface WeatherDailyProps {
    daily: DailyWeatherData[];
    from: number;
    to: number;
}
declare function WeatherDaily({ daily, from, to }: WeatherDailyProps): JSX.Element;
export default WeatherDaily;
