import { Period } from "./period"; export declare class Season extends Period { protected name: string; static readonly MIN_LENGTH_NAME = 2; static readonly MAX_LENGTH_NAME = 9; protected id: string | number; constructor(name: string, startDateTime: Date, endDateTime: Date); getId(): string | number; setId(id: string | number): void; getName(): string; setName(name: string): void; setStartDateTime(startDateTime: Date): void; setEndDateTime(endDateTime: Date): void; }