/** * Checks that any value in the collection evaluates as truthy against the predicate * * @param {Collection} collection [description] * @param {Predicate} predicate See `iteratee` for usage. * @returns {boolean} * @category Collections */ export default function anyBy(collection: Collection, predicate?: Predicate): boolean;