UNPKG

tdesign-react

Version:
11 lines (10 loc) 413 B
import React from 'react'; import { StyledProps } from '../common'; import { TdTimelineProps } from './type'; export interface TimelineProps extends TdTimelineProps, StyledProps { children?: React.ReactNode; } declare const Timeline: React.FunctionComponent<TimelineProps & React.RefAttributes<HTMLUListElement>> & { Item: React.FC<import("./TimelineItem").TimelineItemProps>; }; export default Timeline;