/** * Deeply merges two plain‐object types T and U, * returning a new object that has properties of both. * Arrays or other non‐object values in `source` simply overwrite. */ export declare const deepMerge: , U extends Record>(target: T, source: U) => T & U; //# sourceMappingURL=deep-merge.d.ts.map