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