export declare function mapIterable(items: Iterable, mapFn: (item: InT) => OutT): Iterable; export declare function makeDistinct(items: Iterable, selector?: (item: ItemT) => KeyT): ItemT[]; export declare function toMap(items: Iterable, keySelector: (item: InT) => KeyT, valueSelector: (item: InT) => ValueT): any; export declare function toMap2(items: Iterable, keySelector: (item: InT) => KeyT, valueSelector: (item: InT) => ValueT): Map; export declare function determineType(value: any): string;