import type { Presenter } from '@core/shared/presentation'; export interface RaceRegistrationsViewModel { registeredDriverIds: string[]; count: number; } export interface RaceRegistrationsResultDTO { registeredDriverIds: string[]; } export interface IRaceRegistrationsPresenter extends Presenter {}