/** * Compare two objects and return true if there is changes detected from obj2 compared to obj1 * @param obj1 * @param obj2 */ export declare function hasChanges(obj1: T1, obj2: T2): boolean;