UNPKG

tdesign-react

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