import type { BasePredicate } from '../predicates/base-predicate.js'; /** 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. */ declare const ofType: (source: IterableIterator | Set | T[], name: string, predicate: BasePredicate) => boolean | string; export default ofType;