import { SubstrateNetwork } from '../../../../../SubstrateNetwork'; import { SCALEDecodeResult } from '../../../scale/SCALEDecoder'; import { SCALEArray } from '../../../scale/type/SCALEArray'; import { SCALEBytes } from '../../../scale/type/SCALEBytes'; import { SCALEClass } from '../../../scale/type/SCALEClass'; import { SCALEString } from '../../../scale/type/SCALEString'; export declare class MetadataV11Constant extends SCALEClass { readonly name: SCALEString; readonly type: SCALEString; readonly value: SCALEBytes; readonly docs: SCALEArray; static decode(network: Network, runtimeVersion: number | undefined, raw: string): SCALEDecodeResult; protected scaleFields: (SCALEBytes | SCALEString | SCALEArray)[]; private constructor(); }