export declare class StartLocation { protected categoryNr: number; protected pouleNr: number; protected placeNr: number; constructor(categoryNr: number, pouleNr: number, placeNr: number); getCategoryNr(): number; getPouleNr(): number; getPlaceNr(): number; getStartId(): string; equals(startLocation: StartLocation): boolean; }