import { Dispatch, SetStateAction } from 'react'; declare type SetValue = Dispatch>; declare function useLocalStorage(key: string, initialValue: T): [T, SetValue]; export default useLocalStorage;