import { EventArgs, Type } from "igniteui-react-core"; import { UserAnnotationInformation } from "./UserAnnotationInformation"; /** * @hidden */ export declare class UserAnnotationToolTipContentUpdatingEventArgs extends EventArgs { static $t: Type; private _annotationInfo; get annotationInfo(): UserAnnotationInformation; set annotationInfo(a: UserAnnotationInformation); private _content; get content(): any; set content(a: any); }