import { CompetitionSport } from '../../competition/sport'; import { Place } from '../../place'; import { PlaceLocation } from '../../place/location'; import { PlacePerformance } from '../../place/performance'; import { SportRoundRankingItem } from './round/sport'; export declare class RoundRankingItem { protected place: Place; private rank; private uniqueRank; private cumulativeRank; private sportItems; private cumulativePerformance; constructor(place: Place); getPlace(): Place; getPlaceLocation(): PlaceLocation; getCumulativeRank(): number; getCumulativePerformance(): PlacePerformance; getUniqueRank(): number; getRank(): number; setRank(rank: number, uniqueRank: number): void; addSportRoundItem(item: SportRoundRankingItem): void; getSportItem(competitionSport: CompetitionSport): SportRoundRankingItem; compareCumulativePerformances(roundRankingItem: RoundRankingItem): number; }