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