import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { LeaguesSubscriptionRequestBodyStructure } from '../../../common/body-entities';
/**
 * LeaguesSubscriptionRequestDto class is responsible for
 * sending requests to the subscription API to subscribe to
 * leagues. It contains the structure of the request body for
 * subscribing to leagues.
 * @param subscriptions The subscriptions to be made to the
 * leagues in the subscription API.
 */
export declare class LeaguesSubscriptionRequestDto implements BaseEntity {
    [key: string]: unknown;
    constructor(data?: unknown);
    subscriptions: LeaguesSubscriptionRequestBodyStructure[];
}
