export declare class Ballot { votes: string[]; ranks: any; candidates: string[]; count: number; constructor(votes: string[], count?: number); eliminate: (candidate: string | string[]) => Ballot; } //# sourceMappingURL=ballot.d.ts.map