export declare class RuntimeConfigStore { private overrides; constructor(); get(key: string): string | null; getAll(): Record; getRawApiKey(): string | null; set(key: string, value: string): { previous: string | null; current: string; }; isSettable(key: string): boolean; private persist; private loadPersisted; } //# sourceMappingURL=config-store.d.ts.map