import { StepStatus } from './Step'; export declare function useStepperState(initialCurrStep?: number): { getStepStatus: (step: number) => StepStatus; currentStep: number; setCurrentStep: import("react").Dispatch>; nextStep: () => void; previousStep: () => void; }; /** * Create a StepProps properties object to pass to a Step component, based on its index and current Stepper state. * * @param step The step index that will receive the props. * @param currentActiveStep The current active stepper step. */ export declare function getStepStatus(step: number, currentActiveStep: number): StepStatus;