import { EventEmitter } from 'eventemitter3'; import { DappPortalSDKConfig } from '../../config/config'; import { SdkDappInfoDto } from '../../dto/SdkDappInfoDto'; import { RequestArguments } from '../interface'; import { ProviderHandlerInterface } from './interface'; export declare class WalletConnectProviderHandler extends ProviderHandlerInterface { private readonly walletName; private readonly eventBus; private readonly config; private readonly walletConnectClient; constructor(eventBus: EventEmitter, config: DappPortalSDKConfig, walletName: string, clientInfo: SdkDappInfoDto); static init(eventBus: EventEmitter, config: DappPortalSDKConfig, walletName: string): Promise; getConnectedAddresses(): Promise; connect(): Promise; requestSign(requestArgs: RequestArguments): Promise; connectAndSign(params: unknown[] | undefined): Promise; shouldStoreConnectedAddressToStorage(): boolean; switchChain(_chainId: string): Promise; private getCurrentChainId; disconnect(): Promise; private convertToEthParam; private convertInputFieldToDataField; private convertLegacyResponse; private requestWithConverter; private convertBitgetRpcError; private convertWalletConnectError; }