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