import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { OutrightScoreEventBodyStructure } from '../../../common/body-entities/responses/outright-score-event-body-structure';
/**
 * GetOutrightScoresResultElement class is responsible
 * for deserializing the response from the snapshot
 * API to get outright scores
 */
export declare class GetOutrightScoresResultElement implements BaseEntity {
    [key: string]: unknown;
    id: number;
    name: string;
    type: number;
    events?: OutrightScoreEventBodyStructure[];
}
