import { Stream } from "@effect/core/stream/Stream/definition"; /** * Statefully 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 scan * @tsplus pipeable effect/core/stream/Stream scan * @tsplus location "@effect/core/stream/Stream/operations/scan" */ export declare function scan(s: S, f: (s: S, a: A) => S): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=scan.d.ts.map