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