import { default as React } from 'react'; export interface BarChartDataPoint { label: string; value: number; color?: string; } export interface BarChartProps { /** Chart data */ data: BarChartDataPoint[]; /** Chart orientation */ orientation?: 'vertical' | 'horizontal'; /** Show values on bars */ showValues?: boolean; /** Show grid lines */ showGrid?: boolean; /** Bar width */ barWidth?: number; /** Chart height */ height?: number; /** Additional className */ className?: string; } /** * BarChart Component * * Simple bar chart for displaying categorical data. * Supports vertical and horizontal orientations. * * @example * ```tsx * * ``` */ export declare const BarChart: React.FC; //# sourceMappingURL=bar-chart.d.ts.map