/**
 * 深度合并对象，返回新对象
 */
declare function merge<R extends Record<string, any> = any>(target: Record<string, any>, ...sources: Record<string, any>[]): R;

export { merge };
