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