import { STM } from "@effect/core/stm/STM/definition/base"; /** * Returns an effect whose success is mapped by the specified side effecting * `f` function, translating any thrown exceptions into typed failed effects. * @tsplus static effect/core/stm/STM.Aspects mapTryCatch * @tsplus pipeable effect/core/stm/STM mapTryCatch * @tsplus location "@effect/core/stm/STM/operations/mapTryCatch" */ export declare function mapTryCatch(f: (a: A) => B, onThrow: (u: unknown) => E1): (self: import("../definition").STM) => import("../definition").STM; //# sourceMappingURL=mapTryCatch.d.ts.map