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