import { Dispatch, SetStateAction } from 'react'; export type StepperContextProps = { current: number; setCurrent: Dispatch>; currentId: string; setCurrentId: Dispatch>; focus: number; setFocus: Dispatch>; onComplete?: () => void; items?: NodeListOf; allCompleted?: boolean; setAllCompleted?: Dispatch>; allowNavigateToPrevStep?: boolean; }; export declare const StepperContext: import('react').Context;