import { ESSceneObject } from 'vtxf-xe2/dist-node/xe2-base-objects'; import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from 'vtxf-xe2/dist-node/xe2-base-utils'; import { SceneObjectKey } from 'vtxf-xe2/dist-node/xe2-utils'; import { CursorContextMenuDiv } from './CursorContextMenuDiv'; import { MyContextMenuClickFuncType } from '../MyContextMenu'; export declare class MyCursorTooltip extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { enabled: boolean; activated: boolean; tooltip: string; tooltipImageUri: string; tooltipImageWidth: number; tooltipImageHeight: number; menuStrings: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; clickFuncStr: string; log: boolean; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; get json(): JsonType; set json(value: JsonType); static defaults: { viewerTagsEnums: [string, string][]; }; private _cursorContextMenuDiv; get cursorContextMenuDiv(): CursorContextMenuDiv; private _clickFunc; get clickFunc(): MyContextMenuClickFuncType | undefined; set clickFunc(value: MyContextMenuClickFuncType | undefined); get clickFuncChanged(): import("vtxf-xe2/dist-node/xe2-base-utils").Listener<[MyContextMenuClickFuncType | undefined, MyContextMenuClickFuncType | undefined]>; private _clickFuncInit; constructor(id?: SceneObjectKey); getProperties(language?: string): import("vtxf-xe2/dist-node/xe2-base-objects").Property[]; } export declare namespace MyCursorTooltip { const createDefaultProps: () => { enabled: boolean; activated: boolean; tooltip: string; tooltipImageUri: string; tooltipImageWidth: number; tooltipImageHeight: number; menuStrings: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; clickFuncStr: string; log: boolean; execOnceFuncStr: string; updateFuncStr: string; toDestroyFuncStr: string; createAppendedObjFuncStr: string; name: string; ref: string | undefined; devTags: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("vtxf-xe2/dist-node/xe2-base-utils").ReactiveVariable; }; } export interface MyCursorTooltip extends ReactivePropsToNativePropsAndChanged> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & { type: string; }>; export {};