import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function flatMapProto(this: IterableX, fn: (value: TSource) => Iterable, thisArg?: any): IterableX; declare module '../../iterable/iterablex' { interface IterableX { flatMap: typeof flatMapProto; } }