import type { Effect } from "./effect.js"; /** * The moral equivalent of `if (p) exp` when `p` has side-effects */ export declare function whenM_(self: Effect, predicate: Effect, __trace?: string): Effect; /** * The moral equivalent of `if (p) exp` when `p` has side-effects * * @ets_data_first whenM_ */ export declare function whenM(predicate: Effect, __trace?: string): (self: Effect) => Effect; //# sourceMappingURL=whenM.d.ts.map