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