import { Struct, Vec } from '../../codec'; import { u32 } from '../../primitive'; import { AccountId } from '../runtime'; /** u32 */ export declare type MemberCount = u32; /** u32 */ export declare type ProposalIndex = u32; /** Struct */ export interface Votes extends Struct { /** ProposalIndex */ readonly index: ProposalIndex; /** MemberCount */ readonly threshold: MemberCount; /** Vec */ readonly ayes: Vec; /** Vec */ readonly nays: Vec; }