import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Statefully and effectfully maps over the elements of this stream to produce * all intermediate results. * @tsplus static effect/core/stream/Stream.Aspects scanReduceEffect * @tsplus pipeable effect/core/stream/Stream scanReduceEffect * @tsplus location "@effect/core/stream/Stream/operations/scanReduceEffect" */ export declare function scanReduceEffect(f: (a2: A2, a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=scanReduceEffect.d.ts.map