import { ClickCallbackParams, PlotProps } from './types';
export type ThemesPlotProps = {
    onPointClick: ({ facetValue, type, event }: ClickCallbackParams) => void;
    onIndividualThemeBarPlotPointClick?: ({ facetValue, type, event, }: ClickCallbackParams) => void;
    dotPlot: PlotProps;
    topBarPlot: PlotProps;
    sideBarPlot: PlotProps;
    dotPlotYAxisLabel?: string;
};
export declare function ThemesPlot({ dotPlot, topBarPlot, sideBarPlot, onPointClick, onIndividualThemeBarPlotPointClick, dotPlotYAxisLabel, }: ThemesPlotProps): import("react/jsx-runtime").JSX.Element;
export default ThemesPlot;
//# sourceMappingURL=ThemesPlot.d.ts.map