import { AsyncIterableX } from '../asynciterablex.js'; import { MonoTypeOperatorAsyncFunction } from '../../interfaces.js'; /** @ignore */ export declare class RepeatAsyncIterable extends AsyncIterableX { private _source; private _count; constructor(source: AsyncIterable, count: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator, void, unknown>; } /** * 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 {MonoTypeOperatorAsyncFunction} The async-iterable sequence producing the elements of the given sequence repeatedly. */ export declare function repeat(count?: number): MonoTypeOperatorAsyncFunction;