/**
 * 深合并任意多个普通对象
 * @param {object} target  目标对象（会被修改）
 * @param {...object} sources 任意多个来源对象
 * @returns {object} 返回合并后的 target
 */
export declare function merge(target: any, ...sources: any[]): any;
