import type { IAsyncEnumerable } from "../../types/index.js"; /** * Generates a sequence that contains one repeated value. * @param element The value to be repeated. * @param count The number of times to repeat the value in the generated sequence. * @param delay How long to delay the repeat (ms) * @returns An IAsyncEnumerable that contains a repeated value. */ export declare const repeatAsync: (element: TResult, count: number, delay?: number) => IAsyncEnumerable;