import React from 'react'; export type StepState = 'selected' | 'unselected' | 'completed' | 'error'; export type StepDevice = 'desktop' | 'mobile'; export type StepDirection = 'horizontal' | 'vertical'; export type StepType = 'default' | 'dot' | 'navigation'; export interface StepsContextType { currentStep: number; device: StepDevice; direction: StepDirection; type: StepType; onChange?: (step: number) => void; } export declare const useStepsContext: () => StepsContextType; export interface StepsProviderProps { value: StepsContextType; children: React.ReactNode; } export declare const StepsProvider: React.FC; //# sourceMappingURL=StepsContext.d.ts.map