/** * A enumeration that represents the kind of state change for an actor state * when saves change is called to a set of actor states. */ declare enum StateChangeKind { NONE = 0, ADD = 1, UPDATE = 2, REMOVE = 3 } export default StateChangeKind;