import { TArray } from "@effect/core/stm/TArray/definition"; import { STM } from "@effect/core/stm/STM/definition/base"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; /** * Atomically reduce the array, if non-empty, by a binary operator. * @tsplus static effect/core/stm/TArray.Aspects reduceMaybe * @tsplus pipeable effect/core/stm/TArray reduceMaybe * @tsplus location "@effect/core/stm/TArray/operations/reduceMaybe" */ export declare function reduceMaybe(f: (x: A, y: A) => A): (self: TArray) => STM>; //# sourceMappingURL=reduceMaybe.d.ts.map