import React from 'react'; interface IStepContext { completed: boolean; active: boolean; disabled: boolean; index: number; stepSize?: string | number; } declare const StepContext: React.Context; export default StepContext;