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