/**
* Defines the structure of options passed to step actions.
* This type provides a flexible, yet type-safe, way to manage action-specific settings.
*/exportinterfaceActionOptionsType {
[key: string]: any;
// Example of optional fieldoptionalField?: string;
}