import { SubstrateNetwork } from '../../../../../SubstrateNetwork'; 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 MetadataV11Event extends SCALEClass { readonly name: SCALEString; readonly args: SCALEArray; readonly docs: SCALEArray; static decode(network: Network, runtimeVersion: number | undefined, raw: string): SCALEDecodeResult; scaleFields: (SCALEString | SCALEArray)[]; private constructor(); }