import type { AsyncCacheStore } from '../asyncCacheStore'; declare class LocalStorageCacheStore implements AsyncCacheStore { private storage; constructor(); get(key: string): Promise; set(key: string, value: T): Promise; delete(key: string): Promise; has(key: string): Promise; } export declare function useLocationStorageCache(): LocalStorageCacheStore; export {};