import { KeyPair } from '../utils/key_pair'; import { KeyStore } from './keystore'; export declare function loadJsonFile(path: string): Promise; export declare function readKeyFile(path: string): Promise<[string, KeyPair]>; export declare class UnencryptedFileSystemKeyStore extends KeyStore { readonly keyDir: string; constructor(keyDir: string); setKey(networkId: string, accountId: string, keyPair: KeyPair): Promise; getKey(networkId: string, accountId: string): Promise; removeKey(networkId: string, accountId: string): Promise; clear(): Promise; private getKeyFilePath; getNetworks(): Promise; getAccounts(networkId: string): Promise; }