import { HorizontalPoule } from '../../../poule/horizontal'; import { Place } from '../../../place'; import { QualifyGroup } from '../../group'; import { HorizontalQualifyRule } from '../horizontal'; export declare class HorizontalMultipleQualifyRule extends HorizontalQualifyRule { private toPlaces; constructor(fromHorizontalPoule: HorizontalPoule, group: QualifyGroup, toPlaces: Place[]); hasToPlace(place: Place): boolean; getAbsoluteRankByToPlace(toPlace: Place): number; getToPlaces(): Place[]; getNrOfToPlaces(): number; detach(): void; getGroup(): QualifyGroup; }