import { MultilingualString } from "@omnia/fx-models"; import { TsxAllowUnknowProperties } from "../../ux"; export interface IRichTextEditorRenderer { editorContent: string | MultilingualString; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface ElementAttributesProperty { } interface IntrinsicElements { "omfx-rich-text-editor-renderer": TsxAllowUnknowProperties; } } }