import type { CachePayload, CacheStore } from "../types.js"; export interface KVCacheStoreOptions { path?: string; } export declare class KVCacheStore implements CacheStore { private kv; private readonly path?; constructor(options?: KVCacheStoreOptions); private ensureKV; get(key: string): Promise; set(key: string, value: CachePayload): Promise; delete(key: string): Promise; deleteByPrefix(prefix: string): Promise; clear(): Promise; destroy(): Promise; } //# sourceMappingURL=kv-store.d.ts.map