import { EChartsOption, EChartsReactProps } from 'echarts-for-react'; type Props = { options: EChartsOption; theme?: EChartsReactProps['theme']; onChartReady?: (echart: any) => void; height?: string; showLabel?: boolean; }; export declare const BarChart: ({ options, theme, height, onChartReady, showLabel, }: Props) => import("react/jsx-runtime").JSX.Element; export {};