import { KVStore } from "@keplr-wallet/common"; import { AnalyticsService } from "../analytics"; export declare class SidePanelService { protected readonly kvStore: KVStore; protected readonly analyticsService: AnalyticsService; protected _isEnabled: boolean; constructor(kvStore: KVStore, analyticsService: AnalyticsService); init(): Promise; setIsEnabled(isEnabled: boolean): void; getIsEnabled(): boolean; isSidePanelSupported(): boolean; protected setPanelBehavior(): Promise; }