import { Cause } from "@effect/core/io/Cause/definition"; import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * 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. * @tsplus static effect/core/stream/Stream.Aspects catchSomeCause * @tsplus pipeable effect/core/stream/Stream catchSomeCause * @tsplus location "@effect/core/stream/Stream/operations/catchSomeCause" */ export declare function catchSomeCause(pf: (cause: Cause) => Maybe>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=catchSomeCause.d.ts.map