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