import { CachedIteratorIterable } from "../iterables/cached-iterator-iterable"; export declare class CachedIterator implements Iterator { private iterable; private index; constructor(iterable: CachedIteratorIterable); next(): IteratorResult; }