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<IRichTextEditor, "initialContent" | "onContentChange">;
    enableMention?: boolean;
    contentChanged: (content: string) => void;
    mentionChanged: (mentions: Array<ResolvedUserIdentity>) => void;
    resetContetnRte?: boolean;
    autoFocus?: boolean;
}
declare global {
    namespace VueTsxSupport.JSX {
        interface Element {
        }
        interface ElementClass {
        }
        interface IntrinsicElements {
            "omfx-people-tagging-component": TsxAllowUnknowProperties<IPeopleTaggingComponent>;
        }
    }
}
