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