import { IAccountProvider, IKeyStore } from '@portkey/types'; import { WalletAccount } from './walletAccount'; export declare class AccountProvider implements IAccountProvider { private _BIP44Path; private _mnemonic?; seedWithBuffer: boolean; constructor(BIP44Path?: string); setSeedWithBuffer(seedWithBuffer: boolean): void; create(BIP44Path?: string): WalletAccount; privateKeyToAccount(privateKey: string): WalletAccount; decrypt(keystore: IKeyStore, password: string, _options?: Record): Promise; } //# sourceMappingURL=accountProvider.d.ts.map