import { IStringKeyMap } from '../../type'; import { ReactElement } from 'react'; export declare type StepSchema = { next: string | null; prev: string | null; }; export declare type WizardContextProps = { moveNextStep: () => void; movePrevStep: () => void; moveToStep: (step: string) => void; onSubmit: () => void; steps: WizardStep[]; stepsSchema?: IStringKeyMap; currentStep: string; getPrevStep: () => string | null; getNextStep: () => string | null; }; export declare type WizardStep = { name: string; label: string; component: ReactElement; };