import { Enqueue } from "@effect/core/io/Queue/definition/common"; import { Take } from "@effect/core/stream/Take/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Enqueues elements of this stream into a queue. Stream failure and ending * will also be signalled. * @tsplus static effect/core/stream/Stream.Aspects runIntoQueue * @tsplus pipeable effect/core/stream/Stream runIntoQueue * @tsplus location "@effect/core/stream/Stream/operations/runIntoQueue" */ export declare function runIntoQueue(queue: Enqueue>): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runIntoQueue.d.ts.map