import { OutrightMarketBodyStructure } from './outright-market-body-structure';
import { OutrightLeagueFixtureSnapshot } from './outright-league-fixture-snapshot';
/**
 * Outright League Event Body Structure class is responsible for
 * deserializing the response from the snapshot API to a
 * outright league event body structure.
 */
export declare class OutrightLeagueEventBodyStructure {
    fixtureId: number;
    markets: OutrightMarketBodyStructure[];
    outrightLeague: OutrightLeagueFixtureSnapshot;
}
