/**
 * Combines iterables
 *
 * @param sources the iterables to combine
 */
export declare function combineLatest<T>(...sources: Array<AsyncIterable<T>>): AsyncIterableIterator<T[]>;
