export declare function mapValues<K, T, R>(src: Map<K, T>, map: (value: T, key: K) => R): Map<K, R>;
