import { Dequeue, Queue } from "@effect/core/io/Queue/definition/common"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a stream from a `Queue` of values. * @param maxChunkSize Maximum number of queued elements to put in one chunk in the stream. * @tsplus static effect/core/stream/Stream.Ops fromQueue * @tsplus location "@effect/core/stream/Stream/operations/fromQueue" */ export declare function fromQueue(queue: Dequeue, maxChunkSize?: number): Stream; //# sourceMappingURL=fromQueue.d.ts.map