import type { Managed } from "../managed.js"; /** * Iterates with the specified effectual function. The moral equivalent of: * * ``` * let s = initial * * while (cont(s)) { * s = body(s) * } * * return s * ``` */ export declare function iterate(initial: Z): (cont: (z: Z) => boolean) => (body: (z: Z) => Managed, __trace?: string | undefined) => Managed; //# sourceMappingURL=iterate.d.ts.map