import type { PenaltyType } from '../../domain/entities/Penalty'; export interface ApplyPenaltyCommand { raceId: string; driverId: string; stewardId: string; type: PenaltyType; value?: number; reason: string; protestId?: string; notes?: string; }