import { Effect } from "@effect/core/io/Effect/definition"; import { Schedule } from "@effect/core/io/Schedule/definition"; /** * Returns a new schedule that passes each input and output of this schedule * to the specified function, and then determines whether or not to continue * based on the return value of the function. * @tsplus static effect/core/io/Schedule.Aspects checkEffect * @tsplus pipeable effect/core/io/Schedule checkEffect * @tsplus location "@effect/core/io/Schedule/operations/checkEffect" */ export declare function checkEffect(test: (input: In, output: Out) => Effect): (self: import("../definition").Schedule) => import("../definition").Schedule; //# sourceMappingURL=checkEffect.d.ts.map