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 typed error. * @tsplus static effect/core/stream/Stream.Aspects catchSome * @tsplus pipeable effect/core/stream/Stream catchSome * @tsplus location "@effect/core/stream/Stream/operations/catchSome" */ export declare function catchSome(pf: (e: E) => Maybe>): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=catchSome.d.ts.map