import type { IterSource } from '../types';
/** An iterator that concatenates other iterators together, in the order they are in the `iterators` arg. */
export declare class ConcatIterator<T extends Array<Iterator<any>>> implements IterableIterator<IterSource<T[number]>> {
    protected iterators: T;
    constructor(iterators: T);
    [Symbol.iterator](): IterableIterator<IterSource<T[number]>>;
    next(...args: any[]): IteratorResult<IterSource<T[number]>>;
}
export default ConcatIterator;
//# sourceMappingURL=ConcatIterator.d.ts.map