/**
 * You cannot clone the followings:
 * - function
 * - Symbol
 * - WeakMap
 * - WeakSet
 * @param value value to clone
 * @returns cloned value
 * @example cloneDeep({ a: 0, b: [1, 2, 3] }) // => { a: 0, b: [1, 2, 3] }
 */
export declare function cloneDeep<T>(value: T): T;
//# sourceMappingURL=cloneDeep.d.ts.map