import { KART_FINAL_STATE } from '../../../constants';
import { ObjectValues } from '../../utils';
import { ScreenCurrentTotal } from './ScreenViewBaseConfig';
export type KartFinalState = ObjectValues<typeof KART_FINAL_STATE>;
export type ScreenFinishViewInput = {
    kartNumber?: number;
    kartPosition: ScreenCurrentTotal;
    coins: number;
    finalState?: KartFinalState;
};
