import { KVStore } from "@keplr-wallet/common"; export declare class SettingsService { protected readonly kvStore: KVStore; protected settingsMap: Map; constructor(kvStore: KVStore); init(): Promise; getThemeOption(): string; setThemeOption(themeOption: string): void; }