import { Wallet } from './Wallet'; export declare class WalletStarkNetArgentX extends Wallet { provider: any; signer: any; constructor(obj?: any, chainId?: string); networkId: () => string; connect(): Promise; disconnect(): Promise; createMessage(message: string): Promise; signCustom(nonce: string, message: string): Promise; signVerify(address: string, message: string, nonce: string, signature: string): Promise; getPrivateBalance(): Promise; getBaseSymbol(): string; }