import { BaseEntity } from '../../../../entities/core-entities/index.js';
/**
 * FixturesSubscriptionBodyStructure class for the body
 * of the fixtures subscription endpoint.
 * It contains the properties for the body of the fixtures
 * subscription endpoint.
 */
export declare class FixturesSubscriptionBodyStructure implements BaseEntity {
    [key: string]: unknown;
    fixtureId: number;
    success: boolean;
    errorMessage?: string;
}
