import { STM } from "@effect/core/stm/STM/definition/base"; /** * Returns an `STM` effect whose failure and success channels have been mapped by * the specified pair of functions, `f` and `g`. * @tsplus static effect/core/stm/STM.Aspects mapBoth * @tsplus pipeable effect/core/stm/STM mapBoth * @tsplus location "@effect/core/stm/STM/operations/mapBoth" */ export declare function mapBoth(g: (e: E) => E1, f: (a: A) => A1): (self: import("../definition").STM) => import("../definition").STM; //# sourceMappingURL=mapBoth.d.ts.map