import { Stream } from "@effect/core/stream/Stream/definition"; /** * Zips this stream with another point-wise, but keeps only the outputs of the * other stream. * * The new stream will end when one of the sides ends. * @tsplus static effect/core/stream/Stream.Aspects zipRight * @tsplus pipeable effect/core/stream/Stream zipRight * @tsplus location "@effect/core/stream/Stream/operations/zipRight" */ export declare function zipRight(that: Stream): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=zipRight.d.ts.map