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