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