import BaseWallet, { txParams } from "./baseWallet"; export default class CentralizedWallet extends BaseWallet { static LABEL: string; static TYPE: string; connected: boolean; address?: string; constructor(); type(): string; id(): string; clearSession(): void; loadNetworkId(): Promise; signMessage(message: string | Uint8Array): Promise | null; signPersonalMessage(message: string | Uint8Array): Promise; sendTransaction(txParams: txParams): Promise; sendCustomRequest(method: string, params?: any): Promise; getAddresses(): Promise; enable(): Promise; isLocked(address: string | null): boolean; isSupported(): boolean; name(): string; }