import { Association } from './association'; import { Identifiable } from './identifiable'; export declare class League extends Identifiable { protected association: Association; protected name: string; static readonly MIN_LENGTH_NAME = 3; static readonly MAX_LENGTH_NAME = 30; static readonly MAX_LENGTH_ABBREVIATION = 7; static readonly MAX_LENGTH_SPORT = 30; protected abbreviation: string | undefined; constructor(association: Association, name: string); getName(): string; setName(name: string): void; getAbbreviation(): string | undefined; setAbbreviation(abbreviation: string | undefined): void; getAssociation(): Association; }