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