import React from 'react'; import { VerticalBarChartProps, ThemeConfig, PresetTheme } from '../types'; export interface VerticalBarChartComponentProps extends VerticalBarChartProps { /** Preset theme name */ theme?: PresetTheme; /** Custom theme configuration */ themeConfig?: ThemeConfig; } /** * VerticalBarChart Component * * A classic vertical bar chart component for displaying categorical data. * This is a convenience wrapper around BarChart with orientation="vertical". * * @example * ```tsx * * ``` */ export declare const VerticalBarChart: React.FC; export default VerticalBarChart;