import { Effect } from "@effect/core/io/Effect/definition"; import { Schedule } from "@effect/core/io/Schedule/definition"; /** * Returns a new schedule that continues until the specified effectful * predicate on the input evaluates to true. * @tsplus static effect/core/io/Schedule.Aspects untilInputEffect * @tsplus pipeable effect/core/io/Schedule untilInputEffect * @tsplus location "@effect/core/io/Schedule/operations/untilInputEffect" */ export declare function untilInputEffect(f: (input: In) => Effect): (self: import("../definition").Schedule) => import("../definition").Schedule; //# sourceMappingURL=untilInputEffect.d.ts.map