import { Sink } from "@effect/core/stream/Sink/definition/base"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Pipes all of the values from this stream through the provided sink. * @tsplus static effect/core/stream/Stream.Aspects pipeThrough * @tsplus pipeable effect/core/stream/Stream pipeThrough * @tsplus location "@effect/core/stream/Stream/operations/pipeThrough" */ export declare function pipeThrough(sink: Sink): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=pipeThrough.d.ts.map