import { type ObservableLike, Observable } from "./Observable.js"; /** * Merges 2 or more observables into a single observable. The resulting * observable does not complete until all merged observables complete. * * Values will be emitted synchronously from each observable in the order * provided. Any asynchronous values will be emitted in the order they arrive. */ export declare function merge(...observables: ObservableLike[]): Observable; //# sourceMappingURL=merge.d.ts.map