import { Wallet } from 'ethers'; export interface EncryptedWalletOptions { keystoreJsonPath: string; password: string; } export declare class EncryptedWalletService { private static readAndValidateKeystoreFile; static loadWalletFromEncryptedJson(options: EncryptedWalletOptions): Promise; static loadWalletFromEncryptedJsonSync(options: EncryptedWalletOptions): Wallet; static validateKeystoreJson(jsonContent: string): boolean; } //# sourceMappingURL=encrypted-wallet.service.d.ts.map