/** * * @param obj 需要监听的对象或数组 * @param callback 当对应属性变化的时候触发的回调函数 * @constructor */ export declare function Watch(obj: any, callback: any): void;