/** Modify the values of an object. @param transformer - Gets the value and key for each item and is expected to return the new value. @example ``` import modifyValues from 'modify-values'; modifyValues({foo: 'UNICORN'}, (value, key) => value.toLowerCase()); //=> {foo: 'unicorn'} ``` */ export default function modifyValues(object: Record, transformer: (value: ValueType, key: KeyType) => ReturnValueType): Record;