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 { PropertyTracker } from "./PropertyTracker"; export declare class PropertyBinding extends ESSceneObject { static readonly type: string; get typeName(): string; get defaultProps(): { sourceDebug: undefined; targetDebug: undefined; 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; }; get json(): JsonType; set json(value: JsonType); private _sourceTracker; get sourceTracker(): PropertyTracker; private _targetTracker; get targetTracker(): PropertyTracker; /** * 强制执行 */ forceExecute(): void; constructor(id?: SceneObjectKey); getProperties(language?: string): import("../ESSceneObject").Property[]; } declare const extraComponentProps: { sourceDebug: undefined; targetDebug: undefined; }; export declare namespace PropertyBinding { 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; }; } export interface PropertyBinding extends ReactivePropsToNativePropsAndChanged & typeof extraComponentProps> { } declare type JsonType = PartialWithUndefinedReactivePropsToNativeProps & typeof extraComponentProps & { type: string; }>; export {};