import type { ScreenRaceLaps } from './ScreenRaceLaps';
import type { ScreenViewBaseConfig } from './ScreenViewBaseConfig';
export type ScreenRaceViewConfig = ScreenViewBaseConfig & {
    laps?: ScreenRaceLaps;
};
