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