/** * Iterates over the list providing a list-number as first and the array-item * as second value. * @param arr Source array. */ export declare function generateList(arr: T[]): IterableIterator<[string, T]>;