import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function mapProto(this: IterableX, fn: (value: T, index: number) => U, thisArg?: any): IterableX; declare module '../../iterable/iterablex' { interface IterableX { map: typeof mapProto; } }