import { FC } from 'react';
import { BarProps, BaseChartProps } from '../types';
declare type Props = {
    barProps: BarProps;
};
declare const BarChart: FC<Props & BaseChartProps>;
export default BarChart;
