import type * as CS from "../../../../Cause/index.js"; import * as C from "../core.js"; /** * Switches over to the stream produced by the provided function in case this one * fails. Allows recovery from all causes of failure, including interruption if the * stream is uninterruptible. */ export declare function catchAllCause_(self: C.Stream, f: (cause: CS.Cause) => C.Stream): C.Stream; /** * Switches over to the stream produced by the provided function in case this one * fails. Allows recovery from all causes of failure, including interruption if the * stream is uninterruptible. * * @ets_data_first catchAllCause_ */ export declare function catchAllCause(f: (cause: CS.Cause) => C.Stream): (self: C.Stream) => C.Stream; //# sourceMappingURL=catchAllCause.d.ts.map