import { FC } from 'react';
import { StepProps } from './step';
export interface FlowProps {
    /** 当前的状态 */
    status?: 'wait' | 'process' | 'finish' | 'error';
    /** 步骤的数据 */
    steps?: Array<StepProps>;
    /** 全局的size*/
    size?: number;
    /** 当前的进度 */
    current?: number;
}
declare const Flow: FC<FlowProps>;
export default Flow;
//# sourceMappingURL=index.d.ts.map