import { SportsBodyStructure } from './sports-body-structure';
import { LocationsBodyStructure } from './locations-body-structure';
import { ParticipantSchedule } from './participant-schedule';
import { Subscription } from '../../../../entities/core-entities/common/index.js';
/**
 * Outright Fixture Element class is responsible for
 * deserializing the response from the snapshot API to a
 * outright fixture element structure.
 */
export declare class OutrightFixtureBodyStructure {
    sport: SportsBodyStructure;
    location: LocationsBodyStructure;
    startDate: Date;
    lastUpdate: Date;
    status: number;
    participants: ParticipantSchedule[];
    subscription: Subscription;
}
