import React from 'react'; import type { ComponentProps } from '../types'; declare type WeatherType = 'sunny' | 'cloudy' | 'rainy' | 'snowy' | 'nighty'; export interface WeatherProps extends ComponentProps { /** * @description 'sunny' | 'cloudy' | 'rainy' | 'snowy' | 'nighty' */ type: WeatherType; /** * @description 切换天气需要的时间 */ duration?: number; /** * @description 右上角天气图标的动画时间,默认是duration的一半 */ iconDuration?: number; } declare const Weather: React.FC; export default Weather;