/** * Produce a collection without certain values * * @param {Object|Array} collection * @param {Predicate} predicate * * @returns {Collection} */ export default function omit(collection: any | any[], predicate: Predicate): Collection;