import type { AsyncCacheStore } from '../asyncCacheStore';
declare class MemoryCacheStore implements AsyncCacheStore {
    private store;
    get<T>(key: string): Promise<T | undefined>;
    set<T>(key: string, value: T): Promise<void>;
    delete(key: string): Promise<void>;
    has(key: string): Promise<boolean>;
}
export declare function useMemoryCache(): MemoryCacheStore;
export {};
