import type { BarItemIdentifier } from "../../models/index.js";
import { type IndividualBarPlotProps } from "../IndividualBarPlot.js";
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 {};