export type DeepCloneable = null | undefined | boolean | number | string | symbol | bigint | Date | RegExp | Error | Array | Set | Map | { [key: string]: DeepCloneable; } | ArrayBuffer | DataView | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; export declare function deepClone(value: T, cache?: WeakMap): T; export default deepClone;