/** *

Contains details about a state entered during an execution.

*/ export interface _StateEnteredEventDetails { /** *

The name of the state.

*/ name: string; /** *

The string that contains the JSON input data for the state.

*/ input?: string; } export declare type _UnmarshalledStateEnteredEventDetails = _StateEnteredEventDetails;