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