/**
* 转换对象,将在 target 对象中存在的 origin 对象中属性的属性值
* 复制到 target 对象中相应的属性上
* 需要注意的是,对于对象中复杂类型属性的属性值,只会将属性值的引用赋值给 target 对象中相应的属性
*
* @param {Record} origin 原始对象
* @param {Record} target 目标对象
* @returns {T} 属性赋值后的目标对象
*/
export declare const convert: (origin: Record, target: Record) => T;