import type { RuntimeConfigLoadResult, RuntimeConfigStoreContract } from './types'; export declare class RuntimeConfigStore implements RuntimeConfigStoreContract { private readonly cacheName; private readonly db?; private readonly fallbackStore; constructor(cacheName: string, appId?: string, indexedDbName?: string); get(key: string): Promise | null>; set(key: string, value: RuntimeConfigLoadResult): Promise; remove(key: string): Promise; private buildKey; }