import { Codec } from '../../types'; import { u32 } from '../../primitive'; import { AccountId, ValidatorId } from '../runtime'; import { Exposure } from '../staking'; /** Exposure */ export declare type FullIdentification = Exposure; /** [ValidatorId, FullIdentification] & Codec */ export declare type IdentificationTuple = [ValidatorId, FullIdentification] & Codec; /** SessionKeysSubstrate */ export declare type Keys = SessionKeysSubstrate; /** u32 */ export declare type SessionIndex = u32; /** [AccountId, AccountId, AccountId, AccountId] & Codec */ export declare type SessionKeysPolkadot = [AccountId, AccountId, AccountId, AccountId] & Codec; /** [AccountId, AccountId, AccountId] & Codec */ export declare type SessionKeysSubstrate = [AccountId, AccountId, AccountId] & Codec;