declare function arrToMap<T>(arr: string[], val?: T): { [key: string]: T };

export = arrToMap;
