import { Account, AccountFactory } from '../accounts'; export default class AccountResolver { readonly networkId: string; readonly url: string; accountFactories: { [_: string]: AccountFactory; }; constructor(networkId: string, url: string, accountFactories?: { [_: string]: AccountFactory; }); private fetch; private getPublicKey; private isKeyType; resolve(address: string): Promise; }