import { IterableX } from '../iterablex.js'; import { MonoTypeOperatorFunction } from '../../interfaces.js'; /** @ignore */ export declare class RepeatIterable extends IterableX { private _source; private _count; constructor(source: Iterable, count: number); [Symbol.iterator](): Generator; } /** * Repeats the async-enumerable sequence a specified number of times. * * @template TSource The type of the elements in the source sequence. * @param {number} [count=-1] Number of times to repeat the sequence. If not specified, the sequence repeats indefinitely. * @returns {MonoTypeOperatorFunction} The iterable sequence producing the elements of the given sequence repeatedly. */ export declare function repeat(count?: number): MonoTypeOperatorFunction;