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