import { NameValueRecord } from '../common/index.js';
import { Period } from './period';
import { Scoreboard } from './scoreboard';
import { Statistic } from './statistic';
import { CurrentIncident } from './current-incident';
import { DangerIndicator } from './danger-indicator';
import { PlayerStatistic } from './player-statistic';
export declare class Livescore {
    scoreboard?: Scoreboard;
    periods?: Period[];
    statistics?: Statistic[];
    playerStatistics?: PlayerStatistic[];
    livescoreExtraData?: NameValueRecord[];
    currentIncident?: CurrentIncident;
    dangerTriggers?: DangerIndicator[];
}
