import { FC } from 'react'; import { Steps, IStepsProps } from '../steps'; export type IIndicatorProps = Omit; export type IIndicator = FC & { Step: typeof Steps.Step; }; export const Indicator: IIndicator = props => ( ); Indicator.Step = Steps.Step; export default Indicator;