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