import { Place } from '../../place'; import { Round } from '../../qualify/group'; import { QualifyTarget } from '../../qualify/target'; import { HorizontalPoule } from '../horizontal'; export declare class HorizontalPouleCreator { remove(...rounds: (Round | undefined)[]): void; protected removeRound(round: Round, target: QualifyTarget): void; create(...rounds: (Round | undefined)[]): void; protected createRoundHorizontalPoules(round: Round, qualifyTarget: QualifyTarget): HorizontalPoule[]; protected getPlacesHorizontal(round: Round): Place[]; }