import { DecisionState } from"./DecisionState.js";
/**
* Decision state for `A+` and `(A|B)+`. It has two transitions:
* one to the loop back to start of the block and one to exit.
*/
export declareclassPlusLoopbackStateextendsDecisionState{
staticreadonly stateType = 11;
}