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