import { IDictionary } from "./uiTypes"; /** * https://stackoverflow.com/a/48218209 * * Performs a deep merge of objects and returns new object. Does not modify * objects (immutable) and merges arrays via concatenation. * * @param {...object} objects - Objects to merge * @returns {object} New object with merged key/values */ export declare function mergeDeep(...objects: any[]): any; export declare const defaultDictionary: IDictionary;