import type { Game, GameKartState } from '../Game';
export interface BattleKartState extends GameKartState {
    lives: number;
}
export interface Battle extends Game {
    type: 'Battle';
    lives: number;
    kartsState: Record<string, BattleKartState>;
}
