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