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