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