///
import type { StepPointColor, StepPointSizes } from ".";
export type StepContext = {
horizontal?: boolean;
withBg?: boolean;
withRing?: boolean;
withBorder?: boolean;
color?: keyof StepPointColor;
stepPointSize?: keyof StepPointSizes;
ringType?: "ring-2" | "ring-4";
ringTypeColor?: "light" | "deep";
borderType?: "solid" | "dashed";
};
export declare const StepContext: import("react").Context;
export declare function useStepContext(): StepContext;