/** * @author Hanz * @date 2022/6/9 下午7:27 * @description */ import React, { ReactNode } from 'react'; export interface TimelineItemProps { /** item cls */ className?: string; /** 自定义色值 */ color?: string; /** 自定义时间轴点 */ dot?: React.ReactNode; /** 是否pending */ pending?: boolean; /** 自定义节点位置 */ position?: string; /** style */ style?: React.CSSProperties; /** 设置标签 */ label?: React.ReactNode; /** 时间轴点图标 */ dotIcon?: ReactNode; /** 时间轴内容 */ content?: string; /** 是否禁用 */ disabled?: boolean; } declare const TimelineItem: React.FC; export default TimelineItem;