/** * Creates a 'deep' copy of the given object * * from: http://www.tuanhuynh.com/blog/2014/unpacking-underscore-clone-and-extend/ */ export declare function deepExtend(out?: {}, ...others: any[]): T;