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