import React, { FunctionComponent } from 'react';
import * as PlotlyTyped from 'plotly.js';
import { GraphItem, PlotStyle, Dictionary } from './types';
export declare type DotPlotProps = {
    plotData: GraphItem[];
    layoutConfig: Partial<PlotlyTyped.Layout>;
    optionsConfig: Partial<PlotlyTyped.Config>;
    label?: string;
    style?: React.CSSProperties;
    id: string;
    isLegend?: boolean;
    isXAxis?: boolean;
    xMax?: number;
    plotStyle?: PlotStyle;
    markerSymbols?: Dictionary;
    onClick?: Function;
};
declare const DotPlot: FunctionComponent<DotPlotProps>;
export default DotPlot;
