import { Cause } from "@effect/core/io/Cause/definition"; import { Exit } from "@effect/core/io/Exit/definition"; /** * Folds over the value or cause. * @tsplus static effect/core/io/Exit.Aspects fold * @tsplus pipeable effect/core/io/Exit fold * @tsplus location "@effect/core/io/Exit/operations/fold" */ export declare function fold(failed: (cause: Cause) => Z, completed: (a: A) => Z): (self: Exit) => Z; //# sourceMappingURL=fold.d.ts.map