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