import { FormationLine } from "./formation/line"; export declare class Formation { protected readonly lines: FormationLine[]; constructor(lines: FormationLine[]); getLines(): FormationLine[]; getName(): string; equals(formation: Formation): boolean; }