import type { Cause } from "../Cause/cause.js"; import type { Effect } from "./effect.js"; /** * Recovers from all errors with provided cause. */ export declare function catchAllCause_(effect: Effect, f: (_: Cause) => Effect, __trace?: string): Effect; /** * Recovers from all errors with provided cause. * * @ets_data_first catchAllCause_ */ export declare function catchAllCause(f: (_: Cause) => Effect, __trace?: string): (effect: Effect) => Effect; //# sourceMappingURL=catchAllCause.d.ts.map