export interface TimeNode { moment?: React.ReactNode; icon?: React.ReactNode; description: React.ReactNode; className?: string; } export interface TimelineProps { /** 节点列表 */ nodes: TimeNode[]; } /** * 支持响应式的样式类: timeline-vertical, timeline-horizontal */ export declare function Timeline(props: TimelineProps): import("react").JSX.Element;