import { Dispatch, SetStateAction } from 'react'; interface Helpers { goToNextStep: () => void; goToPrevStep: () => void; reset: () => void; canGoToNextStep: boolean; canGoToPrevStep: boolean; setStep: Dispatch>; } declare const useStep: (maxStep: number) => [number, Helpers]; export default useStep; //# sourceMappingURL=useStep.d.ts.map