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