export declare class ArrayIterable implements Iterable { arr: T[]; constructor(arr: T[]); [Symbol.iterator](): Iterator; }