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