import { Stream } from "@effect/core/stream/Stream/definition"; import { TerminationStrategy } from "@effect/core/stream/Stream//TerminationStrategy"; /** * Merges this stream and the specified stream together, discarding the values * from the left stream. * @tsplus static effect/core/stream/Stream.Aspects mergeRight * @tsplus pipeable effect/core/stream/Stream mergeRight * @tsplus location "@effect/core/stream/Stream/operations/mergeRight" */ export declare function mergeRight(that: Stream, strategy?: TerminationStrategy): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mergeRight.d.ts.map