import type { Curried } from '../../compositions/curry.js'; import type { Series, SyncSeries } from '../../controls/types.js'; declare function _syncMap(input: SyncSeries, mapper: (value: I) => O): Generator; declare function _asyncMap(input: Series, mapper: (value: Awaited) => O | Promise): AsyncGenerator>; export declare function mapSync(...args: Parameters>): ReturnType>; export declare function mapSync(...args: Parameters>>): ReturnType>>; export declare function mapAsync(...args: Parameters>): ReturnType>; export declare function mapAsync(...args: Parameters>>): ReturnType>>; /** Maps each element by the specified mapper. */ export declare namespace map { const sync: typeof mapSync; const async: typeof mapAsync; } export {}; //# sourceMappingURL=map.d.ts.map