import type * as C from "../core.js"; import * as MergeWith from "./mergeWith.js"; /** * Merges this stream and the specified stream together. * * New produced stream will terminate when both specified stream terminate if no termination * strategy is specified. */ export declare function merge_(self: C.Stream, that: C.Stream, strategy?: MergeWith.TerminationStrategy): C.Stream; /** * Merges this stream and the specified stream together. * * New produced stream will terminate when both specified stream terminate if no termination * strategy is specified. * * @ets_data_first merge_ */ export declare function merge(that: C.Stream, strategy?: MergeWith.TerminationStrategy): (self: C.Stream) => C.Stream; //# sourceMappingURL=merge.d.ts.map