/** * Perform a deep-clone on a map of Objects */ declare const deepClone: (map: Map<{}, {}>) => Map<{}, {}>; export default deepClone;