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