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