///
import { ColumnChartProps } from '../../../props';
/**
* A React component representing categorical data with vertical rectangular bars
* whose heights are proportional to the values that they represent.
*
* The chart can include multiple values on both the X and Y-axis, as well as a break down by categories displayed on the Y-axis.
*
* @example
* Column chart displaying total revenue per year, broken down by condition, from the Sample ECommerce data model.
*
* ```tsx
* import { ColumnChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* Stacked column chart variant, broken down by age range:
*
* ```tsx
*
* ```
*
*
*
* Stacked percentage column chart variant, using the same data:
*
* ```tsx
*
* ```
*
*
*
* @param props - Column chart properties
* @returns Column Chart component
* @group Charts
*/
export declare const ColumnChart: import("react").FunctionComponent;