import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Statefully maps over the chunk, producing new elements of type `B`. * @tsplus static Chunk.Aspects mapAccum * @tsplus pipeable Chunk mapAccum * @tsplus location "@tsplus/stdlib/collections/Chunk/operations/mapAccum" */ export declare function mapAccum(s: S, f: (s: S, a: A) => readonly [S, B]): (self: Chunk) => readonly [S, Chunk]; //# sourceMappingURL=mapAccum.d.ts.map