import { SubstrateNetwork } from '../../../SubstrateNetwork'; import { SCALEArray } from '../scale/type/SCALEArray'; import { SCALEInt } from '../scale/type/SCALEInt'; export declare class SubstrateSlashingSpans { readonly spanIndex: SCALEInt; readonly lastStart: SCALEInt; readonly lastNonzeroSlash: SCALEInt; readonly prior: SCALEArray; static decode(network: Network, runtimeVersion: number | undefined, raw: string): SubstrateSlashingSpans; private constructor(); }