import { PartialWithUndefinedReactivePropsToNativeProps, ReactivePropsToNativePropsAndChanged } from "xbsj-xe2/dist-node/xe2-base-utils"; import { SceneObjectKey } from "xbsj-xe2/dist-node/xe2-utils"; import { ESSceneObject } from "../ESSceneObject"; import { Watcher } from "./Watcher"; export declare type TrackerEvalFuncType = (propValue: any) => any; export declare class PropertyTracker extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { evalMode: import("./Watcher").EvalModelType; evalOnlyWhenObjsAllExist: boolean; debug: boolean; execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; enabled: boolean; sourceObjId: string; sourcePropertyName: string; targetObjId: string; targetPropertyName: string; evalFuncStr: string; }; get json(): JsonType; set json(value: JsonType); private _watcher; get watcher(): Watcher; private _evalFunc?; get evalFunc(): TrackerEvalFuncType | undefined; set evalFunc(value: TrackerEvalFuncType | undefined); /** * 强制执行 */ forceExecute(): void; constructor(id?: SceneObjectKey); static defaultEvalFuncStr: string; static evalFuncStrReadMe: string; getProperties(language?: string): import("../ESSceneObject").Property[]; } declare const extraComponentProps: { evalMode: import("./Watcher").EvalModelType; evalOnlyWhenObjsAllExist: boolean; debug: boolean; }; export declare namespace PropertyTracker { const createDefaultProps: () => { execOnceFuncStr: string | undefined; updateFuncStr: string | undefined; toDestroyFuncStr: string | undefined; name: string; ref: string | undefined; devTags: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; extras: import("xbsj-xe2/dist-node/xe2-base-utils").ReactiveVariable; enabled: boolean; sourceObjId: string; sourcePropertyName: string; targetObjId: string; targetPropertyName: string; evalFuncStr: string; }; } export interface PropertyTracker extends ReactivePropsToNativePropsAndChanged & typeof extraComponentProps> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & typeof extraComponentProps & { type: string; }>; export {};