/// import Web3 from 'web3'; import { SolidoSigner } from '@decent-bet/solido'; import { Wallet } from 'xdvplatform-wallet'; import { WalletTransaction } from './WalletTransaction'; export declare class WalletSigner implements SolidoSigner { payload: WalletTransaction; wallet: Wallet; private thorify; constructor(payload: WalletTransaction, wallet: Wallet, thorify: Web3); requestSigning(): Promise; wait(lookupInfo: any): Promise; }