export declare const gameStatus: readonly ["non-started", "active", "yellow-flag", "red-flag", "finished"];
export type GameStatus = (typeof gameStatus)[number];
export declare enum GameStatusEnum {
    NON_STARTED = 0,
    ACTIVE = 1,
    YELLOW_FLAG = 2,
    RED_FLAG = 3,
    FINISHED = 4
}
