import { BaseEntity } from '../../../../entities/core-entities/index.js'; import { SeasonBodyStructure } from '../../../common/body-entities/responses'; /** * SeasonsCollectionResponse class is responsible * for deserializing the response from the metadata * API to a collection of seasons. */ export declare class SeasonsCollectionResponse implements BaseEntity { [key: string]: unknown; seasons?: SeasonBodyStructure[]; }