import Step from './Primitive/Step'; import StepValidated from './variations/Step.validated'; import StepEnabled from './variations/Step.enabled'; import StepDisabled from './variations/Step.disabled'; import StepError from './variations/Step.error'; import StepInProgress from './variations/Step.progress'; import StepSkeleton from './variations/Step.skeleton'; declare const StepComponent: typeof Step & { Validated: typeof StepValidated; Enabled: typeof StepEnabled; Disabled: typeof StepDisabled; Error: typeof StepError; InProgress: typeof StepInProgress; Skeleton: typeof StepSkeleton; }; export default StepComponent;