import type { Effect } from "./effect.js"; /** * Executes this effect and returns its value, if it succeeds, but * otherwise fails with the specified error. * * @ets_data_first orElseFail_ */ export declare function orElseFail(e: E2, __trace?: string): (self: Effect) => Effect; /** * Executes this effect and returns its value, if it succeeds, but * otherwise fails with the specified error. */ export declare function orElseFail_(self: Effect, e: E2, __trace?: string): Effect; //# sourceMappingURL=orElseFail.d.ts.map