export declare class MultiIterator implements Iterator { iterators: Iterator[]; constructor(iterators: Iterator[]); next(): IteratorResult; }