use HashMap;
/// Shared state that can be passed between nodes
pub type SharedState = Value;
/// Parameters that can be configured for nodes
pub type Params = ;
/// Action string used for determining the next node in a flow
pub type ActionKey = String;
pub const DEFAULT_ACTION: &str = "default";