import type { Presenter } from '@gridpilot/shared/presentation/Presenter'; export interface GetLeagueProtestsViewModel { protests: any[]; racesById: Record; driversById: Record; } export interface GetLeagueProtestsResultDTO { protests: any[]; races: any[]; drivers: { id: string; name: string }[]; } export interface IGetLeagueProtestsPresenter extends Presenter {}