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 right stream. * @tsplus static effect/core/stream/Stream.Aspects mergeLeft * @tsplus pipeable effect/core/stream/Stream mergeLeft * @tsplus location "@effect/core/stream/Stream/operations/mergeLeft" */ export declare function mergeLeft(that: Stream, strategy?: TerminationStrategy): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=mergeLeft.d.ts.map