import type { Cause } from "../Cause/cause.js"; import * as O from "../Option/index.js"; import type { Effect } from "./effect.js"; /** * Recovers from some or all of the error cases with provided cause. */ export declare function catchSomeCause_(effect: Effect, f: (_: Cause) => O.Option>, __trace?: string): Effect; /** * Recovers from some or all of the error cases with provided cause. * * @ets_data_first catchSomeCause_ */ export declare function catchSomeCause(f: (_: Cause) => O.Option>, __trace?: string): (effect: Effect) => Effect; //# sourceMappingURL=catchSomeCause_.d.ts.map