import { StatisticType } from '../enums'; import { Incident } from './incident'; import { Result } from './result'; export declare class Statistic { type?: StatisticType; results?: Result[]; incidents?: Incident[]; }