import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Constructs a stream from a range of integers (lower bound included, upper * bound not included). * @tsplus static effect/core/stream/Stream.Ops range * @tsplus location "@effect/core/stream/Stream/operations/range" */ export declare function range(min: number, max: number, chunkSize?: number): Stream; //# sourceMappingURL=range.d.ts.map