import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties"; import { ResolvedUserIdentity, OmitProperties } from "../../models"; import { IRichTextEditor } from "../richtexteditor"; export interface IPeopleTaggingComponent { content: string; disabled?: boolean; /**Show rich text editor*/ richTextSettings?: OmitProperties; enableMention?: boolean; contentChanged: (content: string) => void; mentionChanged: (mentions: Array) => void; resetContetnRte?: boolean; autoFocus?: boolean; } declare global { namespace VueTsxSupport.JSX { interface Element { } interface ElementClass { } interface IntrinsicElements { "omfx-people-tagging-component": TsxAllowUnknowProperties; } } }