import { Association } from './association'; import { Identifiable } from './identifiable'; export declare class Team extends Identifiable { protected association: Association; protected name: string; static readonly MIN_LENGTH_NAME = 2; static readonly MAX_LENGTH_NAME = 30; static readonly MAX_LENGTH_ABBREVIATION = 7; static readonly MAX_LENGTH_INFO = 200; 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; }