import { Moment } from 'moment'; /** * IncidentsBodyStructure class is responsible for * deserializing the response from the metadata * API to an incident. */ export declare class IncidentsBodyStructure { sportId?: number; sportName?: string; incidentId?: number; incidentName?: string; description?: string; lastUpdate?: Moment; creationDate?: Moment; }