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