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