import type { Effect } from "../../../../Effect/effect.js";
import type * as Chunk from "../core.js";
/**
* Folds over the elements in this chunk from the left.
* Stops the fold early when the condition is not fulfilled.
*/
export declare function reduceWhileEffect_(self: Chunk.Chunk, s: S, pred: (s: S) => boolean, f: (s: S, a: A) => Effect): Effect;
/**
* Folds over the elements in this chunk from the left.
* Stops the fold early when the condition is not fulfilled.
*
* @ets_data_first reduceWhileEffect_
*/
export declare function reduceWhileEffect(s: S, pred: (s: S) => boolean, f: (s: S, a: A) => Effect): (self: Chunk.Chunk) => Effect;
//# sourceMappingURL=reduceWhileEffect.d.ts.map