import type { Flatten } from '../types/mod'; import type { MapFn } from '../types/functions/mod'; export interface FlatMap { | AsyncIterable>(fn: MapFn, iter: AsyncIterable): AsyncIterable>; | AsyncIterable>(fn: MapFn): (iter: AsyncIterable) => AsyncIterable>; } export declare const flatMap: FlatMap; //# sourceMappingURL=flatMap.d.ts.map