import { Schedule } from "@effect/core/io/Schedule/definition"; /** * Returns the composition of this schedule and the specified schedule, by * piping the output of this one into the input of the other. Effects * described by this schedule will always be executed before the effects * described by the second schedule. * @tsplus pipeable-operator effect/core/io/Schedule >> * @tsplus static effect/core/io/Schedule.Aspects compose * @tsplus pipeable effect/core/io/Schedule compose * @tsplus location "@effect/core/io/Schedule/operations/compose" */ export declare function compose(that: Schedule): (self: import("../definition").Schedule) => import("../definition").Schedule; //# sourceMappingURL=compose.d.ts.map