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'; import { MetadataV14StorageEntry } from './MetadataV14StorageEntry'; export declare class MetadataV14Storage extends SCALEClass { readonly prefix: SCALEString; readonly storageEntries: SCALEArray; static decode(configuration: C, runtimeVersion: number | undefined, raw: string): SCALEDecodeResult; protected scaleFields: SCALEString[]; private constructor(); }