import type { Predicate } from "../../../Function/index.js"; import * as C from "./core.js"; /** * A sink that folds its inputs with the provided function, termination predicate and initial state. */ export declare function fold(z: S, contFn: Predicate, f: (s: S, in_: In) => S): C.Sink; //# sourceMappingURL=fold.d.ts.map