import type * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Consumes elements of the stream, passing them to the specified callback, * and terminating consumption when the callback returns `false`. */ export declare function runForEachWhile_(self: C.Stream, f: (a: A) => T.Effect): T.Effect; /** * Consumes elements of the stream, passing them to the specified callback, * and terminating consumption when the callback returns `false`. * * @ets_data_first runForEachWhile_ */ export declare function runForEachWhile(f: (a: A) => T.Effect): (self: C.Stream) => T.Effect; //# sourceMappingURL=runForEachWhile.d.ts.map