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