import { Maybe } from "@tsplus/stdlib/data/Maybe/definition"; import { Effect } from "@effect/core/io/Effect/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/io/Effect.Aspects refineOrDieWith * @tsplus pipeable effect/core/io/Effect refineOrDieWith * @tsplus location "@effect/core/io/Effect/operations/refineOrDieWith" */ export declare function refineOrDieWith(pf: (e: E) => Maybe, f: (e: E) => unknown): (self: import("../definition").Effect) => import("../definition").Effect; //# sourceMappingURL=refineOrDieWith.d.ts.map