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