export interface IUserStateMachine { get id(): string; get title(): string; get stateTransitions(): Map; } export interface ITransition { get stateTo(): string; get displayName(): string; get availableForPositionsSource(): string[]; }