import { FunctionComponent } from 'react';
import { TooltipVisualProps } from '../ElementWithTooltip';
import { PlotProps, ClickCallbackParams } from './types';
export declare type ThemesPlotProps = {
    onPointClick: ({ facetValue, type, event }: ClickCallbackParams) => void;
    dotPlot: PlotProps;
    topBarPlot: PlotProps;
    sideBarPlot: PlotProps;
    tooltipProps?: TooltipVisualProps;
    dotPlotYAxisLabel?: string;
};
declare const ThemesPlot: FunctionComponent<ThemesPlotProps>;
export default ThemesPlot;
