/**
 * Map values of an object given mapFn. Avoids needing to pull in lodash
 */
declare function mapValues<TKey extends string | number | symbol, TValue, TNewValue>(obj: Record<TKey, TValue>, mapFn: (value: TValue, key: TKey, index: number) => TNewValue): Record<TKey, TNewValue>;

export { mapValues };
