import { LitElement, TemplateResult } from 'lit'; export type EnumWeatherIcons = 'sunny' | 'cloudy' | 'storm'; /** * Shows one of the standard weather icons * * @prop {sunny|cloudy|storm} weather - Which icon to show */ export declare class WeatherIcon extends LitElement { /** * Which icon to show */ weather: EnumWeatherIcons; render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'jio-weather-icon': WeatherIcon; } } //# sourceMappingURL=jio-weather-icon.d.ts.map