/** * Performs a deep merge of `source` into `target`. * Mutates `target` only but not its objects and arrays. * * @author inspired by [jhildenbiddle](https://stackoverflow.com/a/48218209). */ export declare function mergeDeep(target: T, source: P): T & P; //# sourceMappingURL=merge-deep.d.ts.map