/// import { StepsDirection } from "./steps.shared"; interface StepsContextValue { value?: number; direction?: StepsDirection; alternativeLabel?: boolean; } declare const StepsContext: import("react").Context; export default StepsContext;