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