import { PlaceSportPerformance } from "../place/sportPerformance"; export declare class RankingFunctionMapCreator { protected map: RankFunctionMap; constructor(); getMap(): RankFunctionMap; private initMap; protected getMostScored: (performances: PlaceSportPerformance[], sub: boolean) => PlaceSportPerformance[]; } export interface RankFunctionMap { [key: number]: Function; }