import { Schedule } from "@effect/core/io/Schedule/definition"; import { Random } from "@effect/core/io/Random/definition"; /** * Returns a new schedule that randomly modifies the size of the intervals of * this schedule. * * The new interval size is between `min * old interval size` and `max * old * interval size`. * @tsplus static effect/core/io/Schedule.Aspects jittered * @tsplus pipeable effect/core/io/Schedule jittered * @tsplus location "@effect/core/io/Schedule/operations/jittered" */ export declare function jittered(min: number, max: number): (self: import("../definition").Schedule) => import("../definition").Schedule; /** * Returns a new schedule that randomly modifies the size of the intervals of * this schedule. * * The new interval size is between `min * old interval size` and `max * old * interval size`. * @tsplus getter effect/core/io/Schedule jitteredDefault * @tsplus location "@effect/core/io/Schedule/operations/jittered" */ export declare function jitteredDefault(self: Schedule): Schedule; //# sourceMappingURL=jittered.d.ts.map