import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Statefully and effectfully maps over the elements of this stream to produce * all intermediate results of type `S` given an initial S. * @tsplus static effect/core/stream/Stream.Aspects scanEffect * @tsplus pipeable effect/core/stream/Stream scanEffect * @tsplus location "@effect/core/stream/Stream/operations/scanEffect" */ export declare function scanEffect(s: S, f: (s: S, a: A) => Effect): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=scanEffect.d.ts.map