import * as Tp from "../../Tuple/index.js"; import * as Chunk from "../core.js"; /** * Statefully maps over the chunk, producing new elements of type `B`. */ export declare function mapAccum_(self: Chunk.Chunk, s: S, f: (s: S, a: A) => Tp.Tuple<[S, B]>): Tp.Tuple<[S, Chunk.Chunk]>; /** * Statefully maps over the chunk, producing new elements of type `B`. * * @ets_data_first mapAccum_ */ export declare function mapAccum(s: S, f: (s: S, a: A) => Tp.Tuple<[S, B]>): (self: Chunk.Chunk) => Tp.Tuple<[S, Chunk.Chunk]>; //# sourceMappingURL=mapAccum.d.ts.map