import type { Bytes, Struct, U8aFixed, Vec } from '@polkadot/types'; import type { ITuple } from '@polkadot/types/types'; import type { AccountId, Hash, Perbill } from '@polkadot/types/interfaces/runtime'; import type { IdentificationTuple, SessionIndex } from '@polkadot/types/interfaces/session'; /** @name DeferredOffenceOf */ export interface DeferredOffenceOf extends ITuple<[Vec, Vec, SessionIndex]> { } /** @name Kind */ export interface Kind extends U8aFixed { } /** @name OffenceDetails */ export interface OffenceDetails extends Struct { readonly offender: Offender; readonly reporters: Vec; } /** @name Offender */ export interface Offender extends IdentificationTuple { } /** @name OpaqueTimeSlot */ export interface OpaqueTimeSlot extends Bytes { } /** @name Reporter */ export interface Reporter extends AccountId { } /** @name ReportIdOf */ export interface ReportIdOf extends Hash { } export declare type PHANTOM_OFFENCES = 'offences';