/** * Produce an object keyed according to the predicate. * * @param {Collection} collection * @param {Predicate} predicate * * @returns {Object} */ export default function keyBy(collection: Collection, predicate: Predicate): any;