import { Cause } from "@effect/core/io/Cause/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Recovers from some or all of the error cases with provided cause. * @tsplus static effect/core/io/Effect.Aspects catchSomeCause * @tsplus pipeable effect/core/io/Effect catchSomeCause * @tsplus location "@effect/core/io/Effect/operations/catchSomeCause" */ export declare function catchSomeCause(f: (_: Cause) => Maybe>): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=catchSomeCause.d.ts.map