import { type ChartSeriesConfig, type ChartSize } from "../chartConfig.js"; export * from "./variants.js"; type BarChartProps> = { data: T[]; categoryKey: string; series: ChartSeriesConfig[]; /** Optional title rendered above the chart. */ title?: string; /** Size preset — controls chart height. */ size?: ChartSize; layout?: "vertical" | "horizontal"; stacked?: boolean; showGrid?: boolean; /** Show value labels on each bar. */ showValues?: boolean; /** Value formatter for bar labels. */ formatValue?: (value: number) => string; /** Width of the Y-axis label area for vertical layout. Default: 120. */ yAxisWidth?: number; }; export declare function BarChart>({ data, categoryKey, series, title, size, layout, stacked, showGrid, showValues, formatValue, yAxisWidth, }: BarChartProps): import("react").JSX.Element; //# sourceMappingURL=index.d.ts.map