///
/**
* Create a copy of the given key-value map.
*
* Only the enumerable properties that are owned by the given map are copied.
* The prototype chain will not be copied.
*
* @param {object} original map to copy.
*/
declare function copyMap(original: Dict): Dict;
export = copyMap;