/** * Go through the elements of an iterable and return zero or more of them using * an async iterable. * * @param mapper the mapper function to run over the async iterable */ export declare function flatMap(mapper: (t: TFrom) => AsyncIterable): (source: AsyncIterable) => AsyncGenerator;