import type { Effect } from "./effect.js"; /** * Returns an effect whose success is mapped by the specified side effecting * `f` function, translating any thrown exceptions into typed failed effects. */ export declare function mapTryCatch_(self: Effect, f: (a: A) => B, onThrow: (u: unknown) => E, __trace?: string): Effect; /** * Returns an effect whose success is mapped by the specified side effecting * `f` function, translating any thrown exceptions into typed failed effects. * * @ets_data_first mapTryCatch_ */ export declare function mapTryCatch(f: (a: A) => B, onThrow: (u: unknown) => E, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=mapTryCatch.d.ts.map