import { BasePredicate } from '../predicates/base-predicate'; declare const _default: (source: IterableIterator | Set | T[], name: string, predicate: BasePredicate) => boolean | string; /** Test all the values in the collection against a provided predicate. @hidden @param source Source collection to test. @param name The name to call the collection of values, such as `values` or `keys`. @param predicate Predicate to test every item in the source collection against. */ export default _default;