import type { Operator } from './index'; /** * Apply stream of values to the raceFunction, emitting output values in order of completion. By default, it allows * up to 128 concurrent values to be processed. * @param raceFunction * @param concurrent */ export default function (raceFunction: (value: Input) => Promise, concurrent?: number): Operator;