import React from 'react'; import { StepsProps } from 'antd/lib/steps/index'; declare type StepT = { title: string; }; interface ProgressIndicatorProps extends StepsProps { steps: StepT[]; } export declare const ProgressIndicator: React.FC; export {};