import { Message } from "@keplr-wallet/router"; export declare class GetSidePanelIsSupportedMsg extends Message<{ supported: boolean; }> { static type(): string; constructor(); validateBasic(): void; route(): string; type(): string; } export declare class GetSidePanelEnabledMsg extends Message<{ enabled: boolean; }> { static type(): string; constructor(); validateBasic(): void; approveExternal(): boolean; route(): string; type(): string; } export declare class SetSidePanelEnabledMsg extends Message<{ enabled: boolean; }> { readonly enabled: boolean; static type(): string; constructor(enabled: boolean); validateBasic(): void; route(): string; type(): string; }