UNPKG

@sandro-salzmann/vertical-timeline-component-react

Version:
10 lines (9 loc) 341 B
import { PropsWithChildren } from 'react'; import { DateFormat, Theme } from '../../interfaces'; interface TimelineProps { theme?: Theme; lang?: string; dateFormat?: DateFormat; } declare const Timeline: ({ theme, lang, children, dateFormat, }: PropsWithChildren<TimelineProps>) => JSX.Element; export default Timeline;