/** * Performs a deep-merge on a given input of objects */ declare const deepMerge: (...objs: Object[]) => any; export default deepMerge;