import * as Q from "../../../../Queue/index.js"; import * as C from "../core.js"; /** * Creates a stream from a queue of values. The queue will be shutdown once the stream is closed. * * @param maxChunkSize Maximum number of queued elements to put in one chunk in the stream */ export declare function fromQueueWithShutdown_(queue: Q.XQueue, maxChunkSize?: number): C.Stream; /** * Creates a stream from a queue of values. The queue will be shutdown once the stream is closed. * * @param maxChunkSize Maximum number of queued elements to put in one chunk in the stream * * @ets_data_first fromQueueWithShutdown_ */ export declare function fromQueueWithShutdown(maxChunkSize?: number): (queue: Q.XQueue) => C.Stream; //# sourceMappingURL=fromQueueWithShutdown.d.ts.map