import { Mapper } from "../collections";
import { Transducer } from "./transducer";
export declare class MapTransducer implements Transducer {
mapper: Mapper;
constructor(mapper: Mapper);
async_(iterable: AsyncIterable): AsyncIterable;
sync(iterable: Iterable): Iterable;
}
export declare function map(mapper: Mapper): MapTransducer;