import { Wallet } from '../Wallet'; import type { WalletSerialized } from '../WalletSerialized'; /** Base class for read-only wallets. No private keys, no encryption. */ export declare abstract class ViewOnlyWallet extends Wallet { /** @inheritdoc */ abstract serialize(): Promise; }