import { IDeepMerge } from './isObject'; /** * @description Method to perform a deep merge of objects * @param {Object} target - The targeted object that needs to be merged with the supplied @sources * @param {Array} sources - The source(s) that will be used to update the @target object * @return {Object} The final merged object */ export declare const deepMerge: IDeepMerge;