/** * clone object with deep copy */ export declare function clone(model: any): any; /** * Check if an object is a primitive or not */ export declare function isPrimitive(target: any): boolean; /** * Check if two objects have the same values for every key */ export declare function isSameObject(obj1: any, obj2: any): boolean;