/**
 * Merge two objects recursively
 * @param target - target to be merged
 * @param sources - sources to be merged
 * @returns sourced merged with sources
 */
export declare function deepMerge(target: object, ...sources: object[]): object;
