/** * Runs a mapping function over an asynchronous iterable */ export declare function map(mapper: (t: TFrom, index: number) => Promise | TTo): (source: AsyncIterable) => AsyncGenerator;