import { Dequeue } from "@effect/core/io/Queue/definition/common"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Creates a stream from a queue of values. The queue will be shutdown once * the stream is closed. * @tsplus static effect/core/stream/Stream.Ops fromChunkQueueWithShutdown * @tsplus location "@effect/core/stream/Stream/operations/fromChunkQueueWithShutdown" */ export declare function fromChunkQueueWithShutdown(queue: Dequeue>): Stream; //# sourceMappingURL=fromChunkQueueWithShutdown.d.ts.map