export declare class TileIterator<T> implements Iterator<T> {
    iterator: Iterator<T>;
    iterable: Iterable<T>;
    count: number;
    repetition: number;
    firstIteration: boolean;
    constructor(iterable: Iterable<T>, count: number);
    next(): IteratorResult<T>;
}
