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