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