import { Dispatch, SetStateAction } from 'react'; type SetValue = Dispatch>; /** * note: useLocalStorage is being transitioned to sessionStorage */ export declare function useLocalStorage(key: string, initialValue: T): [T, SetValue]; export default useLocalStorage;