/** * 将对象source的值深度遍历赋值给target对象相同key * @param target * @param source */ export declare function deepAssign(target: any, source: any): void;