import { FootballLine } from "../sport/football"; export declare class FormationLine { protected readonly number: FootballLine; protected readonly nrOfPersons: number; constructor(number: FootballLine, nrOfPersons: number); getNumber(): FootballLine; getNrOfPersons(): number; getNumbers(): number[]; equals(formationLine: FormationLine): boolean; }