import { Getter } from '../types';
import { MethodMap } from '../map/MethodMap';
export declare const toMapKeyMap: <T>(getKey: Getter<T, string>) => (agr: MethodMap<T>, value: T, index: number, array: T[]) => MethodMap<T>;
export declare const toMapAndValue: <T, R>(getKey: Getter<T, string>, getValue: Getter<T, R>) => (agr: MethodMap<R>, value: T, index: number, array: T[]) => MethodMap<R>;
