import { Cause } from "@effect/core/io/Cause/definition"; import { Effect } from "@effect/core/io/Effect/definition"; import { Exit } from "@effect/core/io/Exit/definition"; /** * Sequentially zips the this result with the specified result or else returns * the failed `Cause`. * @tsplus static effect/core/io/Exit.Aspects foldEffect * @tsplus pipeable effect/core/io/Exit foldEffect * @tsplus location "@effect/core/io/Exit/operations/foldEffect" */ export declare function foldEffect(failed: (cause: Cause) => Effect, completed: (a: A) => Effect): (self: Exit) => Effect; //# sourceMappingURL=foldEffect.d.ts.map