import { Keystore } from '@senswap/sen-js'; import SecretKeyWallet from './secretkeyWallet.js'; declare class KeystoreWallet extends SecretKeyWallet { constructor(keystore: Keystore, password: string); static extractSecretKey: (keystore: Keystore, password: string) => string; } export default KeystoreWallet;