import { StartLocation } from '../../competitor/startLocation'; export declare class EndRankingItem { private uniqueRank; private rank; private startLocation?; constructor(uniqueRank: number, rank: number, startLocation?: StartLocation | undefined); getUniqueRank(): number; getRank(): number; getStartLocation(): StartLocation | undefined; }