import { Result } from './result';
import { Players } from './players';
export declare class Incident {
    period?: number;
    incidentType?: number;
    seconds?: number;
    participantPosition?: string;
    playerId?: string;
    playerName?: string;
    results?: Result[];
    players?: Players;
}
