import type { ObjectAny } from '@/type.d'; /** * 对象/数组深拷贝 * @param {(Array|Object)} needle * @returns {(Array|Object)} */ export declare function deepCopy(needle: ObjectAny): ObjectAny;