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