export declare enum TicTacToeSymbol {
    /** The symbol representing an X owned cell. */
    X = "X",
    /** The symbol representing an O owned cell. */
    O = "O",
    /** The symbol representing an empty cell. */
    EMPTY = ""
}
