import type { Effect } from "../../../../Effect/effect.js"; import type * as Chunk from "../core.js"; /** * Folds over the elements in this chunk from the right. */ export declare function reduceRightEffect_(self: Chunk.Chunk, s: S, f: (a: A, s: S) => Effect): Effect; /** * Folds over the elements in this chunk from the right. * * @ets_data_first reduceRightEffect_ */ export declare function reduceRightEffect(s: S, f: (a: A, s: S) => Effect): (self: Chunk.Chunk) => Effect; //# sourceMappingURL=reduceRightEffect.d.ts.map