import React from "react"; import { StyledProps } from "../_type"; export interface TimelineProps extends StyledProps { /** * 时间轴模式 * * - "light" - 轻量样式的时间轴 * - "vertical" - 垂直时间轴 * - "vertical-time-left" - 时间展示在左的垂直时间轴 * - "vertical-alternate" - 左右交替展示的垂直时间轴 * - "horizontal" - 水平时间轴 * @default "vertical-light" */ mode?: "light" | "vertical" | "vertical-time-left" | "vertical-alternate" | "horizontal"; /** * 是否使用虚线连接 * * @default false */ dashedLine?: boolean; /** * 尾部渲染内容 */ end?: React.ReactNode; /** * 时间轴节点 */ children?: React.ReactNode; } export declare const Timeline: React.FunctionComponent> & { Item: React.ForwardRefExoticComponent>; };