export type NamedComponentStep = INamedComponentStep; /** * A component step that can be identified via its name. */ interface INamedComponentStep { /** * The name of this component step. */ stepName: string; }