import { StepsContainer } from './Steps'; import { StepItem } from './StepItem'; declare type InternalStepsType = typeof StepsContainer; interface ProgressStepInterface extends InternalStepsType { Item: typeof StepItem; } declare const ProgressStep: ProgressStepInterface; export default ProgressStep;