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