/** * --- * category: utilities/utils * --- * Deep merge N objects into a single result object. * Merging creates a new object, so that none of the arguments are modified. * * @module mergeDeep * * @param {Object} args objects to merge * @returns {Object} a new object with items from all arguments */ declare function mergeDeep(...args: Record[]): Record; export default mergeDeep; export { mergeDeep }; //# sourceMappingURL=mergeDeep.d.ts.map