import * as O from "../Option/index.js"; import type { Effect } from "./effect.js"; /** * Returns an effect that will produce the value of this effect, unless it * fails with the `None` value, in which case it will produce the value of * the specified effect. * * @ets_data_first orElseOptional_ */ export declare function orElseOptional(that: () => Effect, A2>, __trace?: string): (self: Effect, A>) => Effect, A2 | A>; /** * Returns an effect that will produce the value of this effect, unless it * fails with the `None` value, in which case it will produce the value of * the specified effect. */ export declare function orElseOptional_(self: Effect, A>, that: () => Effect, A2>, __trace?: string): Effect, A | A2>; //# sourceMappingURL=orElseOptional.d.ts.map