import type { ScreenBattleViewConfig } from './ScreenBattleViewConfig';
import type { ScreenRaceViewConfig } from './ScreenRaceViewConfig';
export interface CountDownNextViewRace {
    nextView: 'Race';
    config: ScreenRaceViewConfig;
}
export interface CountDownNextViewBattle {
    nextView: 'Battle';
    config: ScreenBattleViewConfig;
}
export type ScreenCountdownParams = CountDownNextViewRace | CountDownNextViewBattle;
