export declare class CacheableList implements Iterable { private cache; private factory; constructor(factory: () => Iterable); [Symbol.iterator](): Generator; }