export * from './deep-merge';
export * from './forof-obj';
/**
 * 把 src 属性的值赋给 tar 的同名属性
 * @param {*} tar 目标对象
 * @param {*} src 源对象
 */
export declare const setKeyValue: (tar: any, src: any) => void;
