import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Keeps some of the errors, and terminates the fiber with the rest, using the * specified function to convert the `E` into a `Throwable`. * @tsplus static effect/core/stream/Stream.Aspects refineOrDieWith * @tsplus pipeable effect/core/stream/Stream refineOrDieWith * @tsplus location "@effect/core/stream/Stream/operations/refineOrDieWith" */ export declare function refineOrDieWith(pf: (e: E) => Maybe, f: (e: E) => unknown): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=refineOrDieWith.d.ts.map