import { FC, HTMLAttributes } from 'react'; export interface TimelineProps extends HTMLAttributes { /** Classi aggiuntive da usare per il componente TimelineProps */ className?: string; testId?: string; } export declare const Timeline: FC;