import { OutrightParticipantResultBodyStructure } from './outright-participant-body-structure'; import { FixtureStatus } from '../../../../entities/core-entities/enums'; /** * Outright Livescore Structure class is responsible for * deserializing the response from the snapshot API to a * outright livescore body structure. */ export declare class OutrightLivescore { status: FixtureStatus; events: OutrightParticipantResultBodyStructure[]; }