import { STM } from "@effect/core/stm/STM/definition/base"; import { TArray } from "@effect/core/stm/TArray/definition"; /** * Atomically folds using a transactional function. * @tsplus static effect/core/stm/TArray.Aspects reduceSTM * @tsplus pipeable effect/core/stm/TArray reduceSTM * @tsplus location "@effect/core/stm/TArray/operations/reduceSTM" */ export declare function reduceSTM(zero: Z, f: (z: Z, a: A) => STM): (self: TArray) => STM; //# sourceMappingURL=reduceSTM.d.ts.map