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