/** * State types */ export declare enum StateType { PASS = "Pass", TASK = "Task", CHOICE = "Choice", WAIT = "Wait", SUCCEED = "Succeed", FAIL = "Fail", PARALLEL = "Parallel", MAP = "Map" }