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