import React from 'react';
interface TimelinePointProps {
    circleClass: string;
    handleClick: () => void;
    circleRef: React.RefObject<HTMLButtonElement>;
    title?: string;
    theme?: any;
    timelinePointDimension?: number;
    timelinePointShape?: 'circle' | 'square' | 'diamond';
    iconChild?: React.ReactNode;
    active?: boolean;
    disabled?: boolean;
}
declare const TimelinePoint: React.FC<TimelinePointProps>;
export default TimelinePoint;
