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