import { BeaconError } from './BeaconError'; /** * Raised by the dApp-side SDK when a wallet's `peer.version` is lower than * the dApp's declared required minimum. SDK-internal; never emitted on the * wire. Consumers discriminate via `instanceof` or `errorCode`. * * @category Error */ export declare class VersionUnsupportedBeaconError extends BeaconError { name: string; title: string; readonly errorCode: "VERSION_UNSUPPORTED"; readonly requiredMinimumVersion: string; readonly walletServedVersion: string; constructor(requiredMinimumVersion: string, walletServedVersion: string, message?: string); }