import type { PredicateFn } from '../types/functions/mod'; export interface Find { (predicate: PredicateFn, iter: AsyncIterable): Promise; (predicate: PredicateFn): (iter: AsyncIterable) => Promise; } export declare const find: Find; //# sourceMappingURL=find.d.ts.map