import { UseStateful } from './useStateful'; import { UseMapActions } from './array/useMap'; export declare type MapOrEntries = Map | [K, V][]; export declare type UseMap = UseStateful> & UseMapActions; export declare function useMap(initialState?: MapOrEntries): UseMap; export default useMap;