import { KeyStore } from './keystore'; import { KeyPair } from '../utils/key_pair'; /** * Simple in-memory keystore for testing purposes. */ export declare class InMemoryKeyStore extends KeyStore { private keys; constructor(); setKey(networkId: string, accountId: string, keyPair: KeyPair): Promise; getKey(networkId: string, accountId: string): Promise; removeKey(networkId: string, accountId: string): Promise; clear(): Promise; getNetworks(): Promise; getAccounts(networkId: string): Promise; }