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