declare enum GraphSearchNodeStates {
    UNEXPLORED = 0,
    DISCOVERED = 1,
    EXPLORED = 2
}
export default GraphSearchNodeStates;
