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