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