import Plotly from 'plotly.js-basic-dist';
import { CSSProperties } from 'react';
import { BarPlotColors, GraphItem, PlotStyle } from './types';
export type BarPlotProps = {
    isTop: boolean;
    style?: CSSProperties;
    plotData: GraphItem[];
    layoutConfig: Partial<Plotly.Layout>;
    optionsConfig: Partial<Plotly.Config>;
    label: string;
    xMax: number;
    colors?: BarPlotColors;
    plotStyle?: PlotStyle;
    onClick?: (event: Readonly<Plotly.PlotMouseEvent>) => void;
};
declare function BarPlot({ plotData, optionsConfig, isTop, layoutConfig, label, xMax, colors, plotStyle, style, onClick, }: BarPlotProps): import("react/jsx-runtime").JSX.Element;
export default BarPlot;
//# sourceMappingURL=BarPlot.d.ts.map