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