import { Wallet, providers } from 'ethers'; import { Address } from './primitives'; /** * Manager for EthersJS Wallets * Ethersjs wallets can be connect to a provider, then convenience functions like getBalance work * This will auto connect wallets to a provider if it was specified in a constructor */ export declare class WalletManager { readonly defaultProvider?: providers.Provider | undefined; protected readonly wallets: Map
; constructor(privateKeys?: ReadonlyArray