import { BaseEntity } from '../../../../entities/core-entities/index.js'; import { FixturesSubscriptionBodyStructure } from '../../../common/body-entities'; /** * Fixtures Subscription Collection Response class * (used for serialization) - represents the response * body of the fixtures subscription collection endpoint. * This class is used to deserialize the response from the * fixtures subscription collection endpoint. * It contains an array of fixtures subscription body structures. */ export declare class FixturesSubscriptionCollectionResponse implements BaseEntity { [key: string]: unknown; fixtures?: FixturesSubscriptionBodyStructure[]; }