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