import React from 'react'; import type { StepProps } from './types'; /** * Internal context shared only between Step and its immediate children * (StepLabel, StepContent). Not exported. */ export interface StepContextValue { active: boolean; completed: boolean; disabled: boolean; index: number; /** True when this step is the last in the sequence */ last: boolean; } /** @internal */ export declare const StepContext: React.Context; declare const Step: React.NamedExoticComponent; export { Step }; //# sourceMappingURL=Step.d.ts.map