/** * todo 不同类型及深度拷贝 * 避免引用,使用的对象复制 * @category Object * @param target * @returns {T} */ export declare const cloneDeep: (target: T) => T;