import * as E from "../Either/index.js"; import type { Effect } from "./effect.js"; /** * Returns an effect that will produce the value of this effect, unless it * fails, in which case, it will produce the value of the specified effect. * * @ets_data_first orElseEither_ */ export declare function orElseEither(that: () => Effect, __trace?: string): (self: Effect) => Effect>; /** * Returns an effect that will produce the value of this effect, unless it * fails, in which case, it will produce the value of the specified effect. */ export declare function orElseEither_(self: Effect, that: () => Effect, __trace?: string): Effect>; //# sourceMappingURL=orElseEither.d.ts.map