export declare type TMapFn = (value: T, i: number) => R; export declare const map: (mapFn: TMapFn) => (iterable: Iterable) => Iterable;