import type { ComponentProps, FC, PropsWithChildren } from 'react'; export type TimelnePointProps = PropsWithChildren & { icon?: FC>; className?: string; }>; export declare const TimelinePoint: FC;