import { Cause } from "@effect/core/io/Cause/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * A more powerful version of `fold` that allows recovering from any kind of * failure except interruptions. * @tsplus static effect/core/io/Effect.Aspects foldCause * @tsplus pipeable effect/core/io/Effect foldCause * @tsplus location "@effect/core/io/Effect/operations/foldCause" */ export declare function foldCause(failure: (cause: Cause) => A2, success: (a: A) => A3): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=foldCause.d.ts.map