import { Schedule } from "@effect/core/io/Schedule/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a stream from a `Schedule` that does not require any further * input. The stream will emit an element for each value output from the * schedule, continuing for as long as the schedule continues. * @tsplus static effect/core/stream/Stream.Ops fromSchedule * @tsplus location "@effect/core/stream/Stream/operations/fromSchedule" */ export declare function fromSchedule(schedule: Schedule): Stream; //# sourceMappingURL=fromSchedule.d.ts.map