export interface KvStore { get(key: string): Promise; set(key: string, value: string): Promise; delete(key: string): Promise; clearAll(): Promise; } export declare class KvStoreContext { private static instance; private storageInstance; private constructor(); static getInstance(): KvStoreContext; isInitialized(): boolean; initialize(store: KvStore): void; getStorage(): KvStore; } export default KvStoreContext; //# sourceMappingURL=kv-store-context.d.ts.map