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