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