import React from 'react'; import { ChartData, ChartOptions } from 'chart.js'; import { BaseChartProps } from './BaseChart'; export interface BarChartProps extends Omit { data: ChartData<'bar'>; options?: ChartOptions<'bar'>; /** Display bars horizontally */ horizontal?: boolean; /** Enable stacked bars */ stacked?: boolean; /** Bar thickness */ barThickness?: number; /** Maximum bar thickness */ maxBarThickness?: number; /** Border radius for bars (default: 4) */ borderRadius?: number; /** Show data labels on bars */ showLabels?: boolean; /** Custom label formatter function */ labelFormatter?: (value: number | string) => string; /** Optional glow treatment for emphasized bar charts */ glow?: boolean; } export declare const BarChart: React.FC; //# sourceMappingURL=BarChart.d.ts.map