/** * Iterates over an object's properties, transforming the values with a predicate * * @param {Object} collection * @param {Predicate} predicate * * @returns {Object} */ export default function mapValues(collection: any, predicate: Predicate): any;