import * as O from "../Option/core.js"; import type { Effect } from "./effect.js"; /** * Recovers from some or all of the error cases. * * @ets_data_first catchSome_ */ export declare function catchSome(f: (e: E) => O.Option>, __trace?: string): (fa: Effect) => Effect; /** * Recovers from some or all of the error cases. */ export declare function catchSome_(fa: Effect, f: (e: E) => O.Option>, __trace?: string): Effect; //# sourceMappingURL=catchSome.d.ts.map