export declare function deepClone(obj: T): T; export declare function deepFreeze(obj: T): T; export declare function notEmpty(arg: T | undefined | null): arg is T; /** * `true` if the argument is an empty object. Otherwise, `false`. */ export declare function isEmpty(arg: Object): boolean; export declare function cloneAndChange(obj: any, changer: (orig: any) => any): any; //# sourceMappingURL=objects.d.ts.map