import { Dispatch, SetStateAction } from 'react';

type SetValue<T> = Dispatch<SetStateAction<T>>;
declare const useLocalStorage: <T>(key: string, initValue: T) => [T, SetValue<T>];

export { useLocalStorage };
