import { BeaconError } from './BeaconError'; /** * Thrown at `DAppClient` construction time when `requiredMinimumVersion` is * not a parseable decimal-integer string, is below `1`, or exceeds the * SDK's own `BEACON_VERSION`. Configuration error; never emitted on the wire. * * @category Error */ export declare class InvalidRequiredMinimumVersionError extends BeaconError { name: string; title: string; readonly errorCode: "INVALID_REQUIRED_MINIMUM_VERSION"; readonly providedValue: string; readonly sdkBeaconVersion: string; constructor(providedValue: string, sdkBeaconVersion: string, reason: string); }