import type { BarItemIdentifier } from "../../models/index.mjs";
import { type IndividualBarPlotProps } from "../IndividualBarPlot.mjs";
interface BatchBarPlotProps extends Omit<IndividualBarPlotProps, 'onItemClick'> {
  onItemClick?: (event: MouseEvent, barItemIdentifier: BarItemIdentifier) => void;
}
export declare function BatchBarPlot({
  completedData,
  borderRadius,
  onItemClick,
  skipAnimation
}: BatchBarPlotProps): import("react/jsx-runtime").JSX.Element;
export {};