/**
 * Copy an Object with its values
 *
 * @param obj Object which needs to be copied
 * @returns A copy of the object
 */
export declare function shallowCopy<T>(obj: T): T;
