import React from 'react';
import { TdTimelineItemProps } from './type';
import { StyledProps } from '../common';
export interface TimelineItemProps extends TdTimelineItemProps, StyledProps {
    children?: React.ReactNode;
    index?: number;
    onClick?: (context: {
        e: React.MouseEvent<HTMLElement>;
        item: TdTimelineItemProps;
    }) => void;
}
declare const TimelineItem: React.FC<TimelineItemProps>;
export default TimelineItem;
