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