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