import React, { ReactNode } from 'react'; import './style/index.less'; declare const stepStatus: ["wait", "process", "finish", "error"]; export declare type StepStatus = typeof stepStatus[number]; export interface baseStepProps { prefixCls?: string; title?: string; status?: StepStatus; stepNumber?: number; nextStatus?: StepStatus; isLast?: boolean; lineNode?: ReactNode; nodeSize?: number | string; nodeColor?: string; } export declare type StepProps = React.HTMLProps & baseStepProps; declare const Step: React.FC; export default Step;