import type { ProtestIncident } from '../../domain/entities/Protest'; export interface FileProtestCommand { raceId: string; protestingDriverId: string; accusedDriverId: string; incident: ProtestIncident; comment?: string; proofVideoUrl?: string; }