import { type BarPlotSlotProps, type BarPlotSlots } from "./BarPlot.mjs";
import { type BarItemIdentifier } from "../models/index.mjs";
import { type MaskData, type ProcessedBarSeriesData } from "./types.mjs";
export interface IndividualBarPlotProps {
  completedData: ProcessedBarSeriesData[];
  masksData: MaskData[];
  borderRadius?: number;
  skipAnimation?: boolean;
  onItemClick?: (event: MouseEvent, barItemIdentifier: BarItemIdentifier) => void;
  slotProps?: BarPlotSlotProps;
  slots?: BarPlotSlots;
}
export declare function IndividualBarPlot({
  completedData,
  masksData,
  borderRadius,
  onItemClick,
  skipAnimation,
  ...other
}: IndividualBarPlotProps): import("react/jsx-runtime").JSX.Element;