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