export declare class Iterable { private list; private counter; constructor(list: T[]); next(): IteratorResult; [Symbol.iterator](): this; }