/** *

Contains details about an exit from a state during an execution.

*/ export interface _StateExitedEventDetails { /** *

The name of the state.

A name must not contain:

*/ name: string; /** *

The JSON output data of the state.

*/ output?: string; } export declare type _UnmarshalledStateExitedEventDetails = _StateExitedEventDetails;