///
import { BarChartProps } from '../../../props';
/**
* A React component representing categorical data with horizontal rectangular bars,
* whose lengths are proportional to the values that they represent.
*
* ## Example
*
* Bar chart displaying total revenue per year from the Sample ECommerce data model.
*
*
*
* Additional Bar Chart examples:
*
* - [Stacked Bar Chart](https://www.sisense.com/developers/playground/?example=charts%2Fbar-chart-stacked)
* - [Stacked Percentage Bar Chart](https://www.sisense.com/developers/playground/?example=charts%2Fbar-chart-stacked100)
*
* @param props - Bar chart properties
* @returns Bar Chart component
* @group Charts
*/
export declare const BarChart: import("react").FunctionComponent;