import TaglessComponent from '../-tagless'; import StateMachine from '../../-private/state-machine/-base'; export default class StepComponent extends TaglessComponent { layout: any; /** * Name used to transition to this step * * @property {string} name the name for this step * @public */ name: string; currentStep: string; transitions: StateMachine; constructor(); willDestroyElement(): void; /** * Whether this state is currently the active one * @property {boolean} isActive * @private */ readonly isActive: boolean; readonly hasNext: boolean; readonly hasPrevious: boolean; }