import type { Effect } from "./effect.js"; /** * Repeats this effect until its error satisfies the specified effectful predicate. * * @ets_data_first repeatUntilM_ */ export declare function repeatUntilM(f: (a: A) => Effect, __trace?: string): (self: Effect) => Effect; /** * Repeats this effect until its error satisfies the specified effectful predicate. */ export declare function repeatUntilM_(self: Effect, f: (a: A) => Effect, __trace?: string): Effect; /** * Repeats this effect until its error satisfies the specified predicate. * * @ets_data_first repeatUntil_ */ export declare function repeatUntil(f: (a: A) => boolean, __trace?: string): (self: Effect) => Effect; /** * Repeats this effect until its error satisfies the specified predicate. */ export declare function repeatUntil_(self: Effect, f: (a: A) => boolean, __trace?: string): Effect; //# sourceMappingURL=repeatUntil.d.ts.map