export declare function merge<T, R>(this: AsyncIterable<T>, ...items: Array<AsyncIterable<R>>): AsyncIterable<T | R>;
