import { SubstrateProtocolConfiguration } from '../../../../types/configuration'; import { SCALEDecodeResult } from '../../../scale/SCALEDecoder'; import { SCALEArray } from '../../../scale/type/SCALEArray'; import { SCALEClass } from '../../../scale/type/SCALEClass'; import { SCALEString } from '../../../scale/type/SCALEString'; export declare class MetadataV11Error extends SCALEClass { readonly name: SCALEString; readonly docs: SCALEArray; static decode(configuration: C, runtimeVersion: number | undefined, raw: string): SCALEDecodeResult; protected scaleFields: (SCALEString | SCALEArray)[]; private constructor(); }