import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Consumes elements of the stream, passing them to the specified callback, * and terminating consumption when the callback returns `false`. * @tsplus static effect/core/stream/Stream.Aspects runForEachWhile * @tsplus pipeable effect/core/stream/Stream runForEachWhile * @tsplus location "@effect/core/stream/Stream/operations/runForEachWhile" */ export declare function runForEachWhile(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runForEachWhile.d.ts.map