Currently `useMap` only allows a single type parameter (for the key). It makes sense to be able to type the value as well. Example ```ts const myMap = useMap<string, string>(); ```