import React from 'react'; import "./Timeline.css"; export type TimelinePointProps = { shape?: 'circle' | 'square'; type?: 'outlined' | 'filled'; className?: string; style?: React.CSSProperties; countColor?: string; color?: string; onClick?: any; cursor?: 'pointer'; }; declare const TimelinePoint: React.FC; export default TimelinePoint;