import React from 'react'; export interface VerticalStepProps { /** * 自定义图标 */ icon?: React.ReactNode; /** * 自定义连接器 */ connector?: React.ReactNode; /** * 标题 */ title: string; /** * 编号 */ index?: number; /** * 不可用状态 */ disabled?: boolean; /** * 是否是最后一个 */ last?: boolean; /** * 点击时的回调函数 */ onChange?: (current: number) => void; /** * 状态 */ status?: 'wait' | 'active' | 'completed' | 'error'; /** * 副标题 */ subTitle?: React.ReactNode; /** * 描述文字(内容) */ description?: React.ReactNode; } /** * 垂直方向步进器 * @param props */ export default function VerticalStep(props: VerticalStepProps): JSX.Element;