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