/** * Creates an iterable that repeats a given item a specified number of times. * * @template T The type of the item. * @param {T} item The item to repeat. * @param {number} numRepeats The number of times to repeat the item. * @returns {Iterable} An iterable of repeated items. */ export declare function repeat(item: T, numRepeats: number): Iterable;