import type { Components, JSX } from "../types/components"; interface LarWeather extends Components.LarWeather, HTMLElement {} export const LarWeather: { prototype: LarWeather; new (): LarWeather; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;