import type { Effect } from "./effect.js"; /** * Keeps none of the errors, and terminates the fiber with them, using * the specified function to convert the `E` into a `unknown`. * * @ets_data_first orDieWith_ */ export declare function orDieWith(f: (e: E) => unknown, __trace?: string): (effect: Effect) => Effect; /** * Keeps none of the errors, and terminates the fiber with them, using * the specified function to convert the `E` into a `unknown`. */ export declare function orDieWith_(effect: Effect, f: (e: E) => unknown, __trace?: string): Effect; //# sourceMappingURL=orDieWith.d.ts.map