/**
 * 用于合并 n 个对象
 * @param  {any[]} ...rest
 * @returns T
 */
declare const merge: <T = any>(...rest: any[]) => T;
export { merge };
