import React from 'react'; export interface Props { /** * 自定义图标 */ icon?: React.ReactNode; /** * 状态 */ status?: 'wait' | 'active' | 'completed' | 'error'; /** * 编号 */ index?: number; /** * 是否用于水平方向步进器 */ isInHorizontal?: boolean; } /** * 步进器节点图标 * @param props */ declare function StepIcon(props: Props): any; export default StepIcon;