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