import { SportsBodyStructure } from './sports-body-structure';
import { LocationsBodyStructure } from './locations-body-structure';
import { LeaguesBodyStructure } from './leagues-body-structure';
import { ParticipantSchedule } from './participant-schedule';
/**
 * Fixture Schedule Body Structure class is responsible for
 * deserializing the response from the subscription API to a
 * fixture schedule body structure.
 */
export declare class FixturesScheduleBodyStructure {
    fixtureId: number;
    sport: SportsBodyStructure;
    location: LocationsBodyStructure;
    league: LeaguesBodyStructure;
    startDate: Date;
    lastUpdate: Date;
    status: number;
    participants: ParticipantSchedule[];
}
