/** * 深拷贝 * * 暂时只支持 普通object/array * @param target object/array * @ignore */ export declare function deepClone(target: T): T;