interface UseStepOptions { defaultStep?: StepName; } export declare function useStepper(steps: readonly StepName[], options?: UseStepOptions): { goToStep: (step: StepName) => void; goToNextStep: () => void; goToPreviousStep: () => void; currentStep: StepName; isFirst: boolean; isLast: boolean; }; export {};