import { Component } from 'react';
export interface ITimelineLegendProps {
    color?: string;
    children?: React.ReactNode;
    className?: string;
    style?: React.CSSProperties;
}
export declare const TimelineDot: ({ color, ...props }: {
    [x: string]: any;
    color?: string;
}) => JSX.Element;
export declare class TimelineLegend extends Component<ITimelineLegendProps> {
    static defaultProps: {
        className: string;
    };
    render(): JSX.Element;
}
