import React from 'react'; import { BarChartProps, ThemeConfig, PresetTheme } from '../types'; export interface BarChartComponentProps extends BarChartProps { /** Preset theme name */ theme?: PresetTheme; /** Custom theme configuration */ themeConfig?: ThemeConfig; } /** * BarChart Component * * A highly customizable, accessible bar chart built with pure SVG. * Supports vertical and horizontal orientations. * Fully responsive with mobile-optimized rendering. * * @example * ```tsx * * ``` */ export declare const BarChart: React.FC; export default BarChart;