import { type ReactElement } from 'react';
export type WeatherState = "sunny" | "clear-night" | "partlycloudy" | "cloudy" | "fog" | "hail" | "rainy" | "snowy" | "snowy-rainy" | "pouring" | "lightning" | "lightning-rainy" | "windy" | "windy-variant";
export interface WeatherSvgProps extends React.ComponentProps<'svg'> {
    state: WeatherState;
    night?: boolean;
}
export declare const WeatherSvg: ({ state, night, width, height, ...rest }: WeatherSvgProps) => ReactElement<SVGElement>;
