import React from 'react'; import type { BarChartProps } from './bar-chart.props'; /** * Bar chart is the horizontal orientation of column chart. * Renders ColumnChart with horizontal={true}. */ export type { BarChartProps } from './bar-chart.props'; export declare const BarChart: ((props: BarChartProps) => React.JSX.Element) & { displayName: string; }; //# sourceMappingURL=bar-chart.d.ts.map