import type { ScreenBattleViewConfig } from './ScreenBattleViewConfig';
import type { ScreenRaceViewConfig } from './ScreenRaceViewConfig';
export interface UpdateRaceViewInput {
    view: 'Race';
    config: ScreenRaceViewConfig;
}
export interface UpdateBattleViewInput {
    view: 'Battle';
    config: ScreenBattleViewConfig;
}
export type ScreenUpdateGameViewInput = UpdateRaceViewInput | UpdateBattleViewInput;
