import * as C from "../core.js"; export declare type TerminationStrategy = "Left" | "Right" | "Both" | "Either"; /** * Merges this stream and the specified stream together to a common element * type with the specified mapping functions. * * New produced stream will terminate when both specified stream terminate if * no termination strategy is specified. */ export declare function mergeWith(self: C.Stream, that: C.Stream, l: (a: A) => A2, r: (a: A1) => A3, strategy?: TerminationStrategy): C.Stream; //# sourceMappingURL=mergeWith.d.ts.map