import { Dictionary } from '../types/interfaces/Dictionary';
/**
 * Deep merge two objects.
 */
export declare function merge(target: Dictionary, ...sources: Dictionary[]): Dictionary;