import { Return } from '../interface/models';
/**
 * 深拷贝
 * @param source 要拷贝的对象
 * @returns 拷贝出的新对象
 */
declare function deepCopy(source: Return): Return;
export { deepCopy };
