import BaseStateMachine from './-base'; /** * Keeps track of the order of the steps in the step manager, as well as * the current step. * * @class CircularStateMachine * @extends BaseStateMachine * @private * @hide */ export default class CircularStateMachine extends BaseStateMachine { pickNext(currentStep?: string): string; pickPrevious(currentStep?: string): string; }