///
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.
*
* ```tsx
* import { BarChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* Stacked bar chart variant, broken down by age range:
*
* ```tsx
*
* ```
*
*
*
* Stacked percentage bar chart variant, using the same data:
*
* ```tsx
*
* ```
*
*
*
* @param props - Bar chart properties
* @returns Bar Chart component
* @group Charts
*/
export declare const BarChart: import("react").FunctionComponent;