/**
 * @license
 * Copyright 2019 Google LLC
 * SPDX-License-Identifier: Apache-2.0
 */
/**
 * Complete a deep merge of all members of a source object with a target object.
 *
 * N.B. This is not a very sophisticated merge algorithm and does not
 * handle complex cases. Use with caution.
 *
 * @param target Target.
 * @param source Source.
 * @returns The resulting object.
 */
export declare function deepMerge(target: any, source: any): any;
//# sourceMappingURL=object.d.ts.map