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