import { Stream } from "@effect/core/stream/Stream/definition"; import { TerminationStrategy } from "@effect/core/stream/Stream/TerminationStrategy"; /** * Merges this stream and the specified stream together. * * New produced stream will terminate when both specified stream terminate if * no termination strategy is specified. * @tsplus static effect/core/stream/Stream.Aspects merge * @tsplus pipeable effect/core/stream/Stream merge * @tsplus location "@effect/core/stream/Stream/operations/merge" */ export declare function merge(that: Stream, strategy?: TerminationStrategy): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=merge.d.ts.map