import { WalletApplications } from './WalletApplications'; import { Chain } from '../chain'; export declare class WalletInfo { readonly provider: WalletApplications; readonly chain: Chain; readonly address: string; readonly connected: boolean; constructor(provider: WalletApplications, chain: Chain, address: string, connected: boolean); }