interface IModalWizardStepProps {
/**
* Triggers the wizard to move to the next stage
*/
next:()=>void;
/**
* Triggers the wizard to move the previous stage
*/
prev:()=>void;
/**
* Information about the current stage
*/
currentStep:IModalWizardStep;
data?:any;
}
Usage
import {IModalWizardStepProps} from 'uxp/components';