import { AsyncIterableX } from './asynciterablex'; /** * Propagates the async sequence that reacts first. * @param {AsyncIterable} left First async sequence. * @param {AsyncIterable} right Second async sequence. * @return {AsyncIterable} An async sequence that surfaces either of the given sequences, whichever reacted first. */ export declare function race(left: AsyncIterable, right: AsyncIterable): AsyncIterableX;