import { OperatorFunction } from '../types'; export declare function map(project: (value: T, index: number) => R): OperatorFunction; /** @deprecated Use a closure instead of a `thisArg`. Signatures accepting a `thisArg` will be removed in v8. */ export declare function map(project: (this: A, value: T, index: number) => R, thisArg: A): OperatorFunction; //# sourceMappingURL=map.d.ts.map