export declare enum TicTacToeState {
    /** The X player won. */
    X_WON = 0,
    /** The O player won. */
    O_WON = 1,
    /** The game ended in a draw. */
    DRAW = 2,
    /** The game is still in progress. */
    IN_PROGRESS = 3,
    /** The game was cancelled. */
    CANCELLED = 4
}
