import { BeaconError } from './BeaconError'; /** * Raised by `compareBeaconVersion()` when either operand fails its strict * decimal-integer validation. SDK-internal: never serialized to the wire. * Consumers discriminate via `instanceof` or the `errorCode` field; the * BeaconErrorType is `UNKNOWN_ERROR` only to satisfy the base contract. * * @category Error */ export declare class InvalidBeaconVersionError extends BeaconError { name: string; title: string; readonly errorCode: "INVALID_BEACON_VERSION"; readonly a: unknown; readonly b: unknown; constructor(a: unknown, b: unknown); }