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