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 check * @tsplus pipeable effect/core/io/Schedule check * @tsplus location "@effect/core/io/Schedule/operations/check" */ export declare function check(test: (input: In, output: Out) => boolean): (self: import("../definition").Schedule) => import("../definition").Schedule; //# sourceMappingURL=check.d.ts.map