export default function useLocalStorage(keyName: string): { setToken: (token: string | null) => void; token: string | null; };