/**
 * NOTE: Had to write this class because we are back-level and cannot make use of modern iterators.
 */
export declare class ValueIterator<T> {
    private _array;
    private _nextIndex;
    constructor(array: T[]);
    done(): boolean;
    next(): T;
}
