import { OutrightFixtureMarketsBodyStructure } from './outright-fixture-market-body-structure';
/**
 * Outright League Markets Competition Structure class is responsible for
 * deserializing the response from the snapshot API to a
 * outright league markets competition body structure.
 */
export declare class OutrightLeagueMarketsCompetition {
    id: number;
    name: string;
    type: number;
    events: OutrightFixtureMarketsBodyStructure[];
}
