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