import * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Statefully and effectfully maps over the elements of this stream to produce all * intermediate results of type `S` given an initial S. */ export declare function scanEffect_(self: C.Stream, s: S, f: (s: S, a: A) => T.Effect): C.Stream; /** * Statefully and effectfully maps over the elements of this stream to produce all * intermediate results of type `S` given an initial S. * * @ets_data_first scanEffect_ */ export declare function scanEffect(s: S, f: (s: S, a: A) => T.Effect): (self: C.Stream) => C.Stream; //# sourceMappingURL=scanEffect.d.ts.map