export declare type HashMapValue = string | number | boolean; export declare type HashMap = { [key: string]: T; }; export declare function toHashMapString(obj?: HashMap): HashMap | undefined; export declare function toHashMap(obj?: HashMap): HashMap | undefined; //# sourceMappingURL=hashmap.d.ts.map