import { AsyncIterableX } from './asynciterablex'; export declare class RepeatValueAsyncIterable extends AsyncIterableX { private _value; private _count; constructor(value: TSource, count: number); [Symbol.asyncIterator](signal?: AbortSignal): AsyncGenerator; } /** * Repeats a given value for the specified number of times as an async-iterable. * * @export * @template TSource The type of element to repeat. * @param {TSource} value The value to repeat as an async-iterable. * @param {number} [count=-1] The number of times to repeat the value, infinite if not specified. * @returns {AsyncIterableX} An async-iterable with a single item that is repeated over the specified times. */ export declare function repeatValue(value: TSource, count?: number): AsyncIterableX;