import { type IParallelEnumerable } 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 Miliseconds for Timeout * @returns An IParallelEnumerable that contains a repeated value. */ export declare const repeatParallel: (element: TResult, count: number, delay?: number) => IParallelEnumerable;