import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Statefully and effectfully maps over the elements of this stream to produce * new elements. * @tsplus static effect/core/stream/Stream.Aspects mapAccumEffect * @tsplus pipeable effect/core/stream/Stream mapAccumEffect * @tsplus location "@effect/core/stream/Stream/operations/mapAccumEffect" */ export declare function mapAccumEffect(s: S, f: (s: S, a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mapAccumEffect.d.ts.map