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