/** *
Contains details about an exit from a state during an execution.
*/ export interface _StateExitedEventDetails { /** *The name of the state.
A name must not contain:
whitespace
brackets < > { } [ ]
wildcard characters ? *
special characters " # % \ ^ | ~ ` $ & , ; : /
control characters (U+0000-001F, U+007F-009F)
The JSON output data of the state.
*/ output?: string; } export declare type _UnmarshalledStateExitedEventDetails = _StateExitedEventDetails;