import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * CompetitionsSubscriptionBodyStructure class is a body
 * entity class that represents the structure of the body
 * of the response of the competitions subscription.
 */
export declare class CompetitionsSubscriptionBodyStructure implements BaseEntity {
    [key: string]: unknown;
    leagueId?: number;
    sportId?: number;
    locationId?: number;
    success: boolean;
    message?: string;
}
