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