import { BaseEntity } from '../../../../entities/core-entities/index.js'; /** * GetSeasonsRequestDto class for sending request * to get seasons from the API. * * @param seasonId Optional filter by season ID */ export declare class GetSeasonsRequestDto implements BaseEntity { [key: string]: unknown; seasonId?: number; constructor(data?: Partial); get EntityId(): string; }