///
import { TreemapChartProps } from '../../../../props';
/**
* A React component displaying hierarchical data in the form of nested rectangles.
*
* This type of chart can be used instead of a column chart for comparing a large number of categories and sub-categories.
*
* @example
* Tree map chart displaying total revenue, categorized by condition and age range, from the Sample ECommerce data model.
*
* ```tsx
* import { TreemapChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* @param props - Treemap chart properties
* @returns Treemap Chart component
* @group Charts
*/
export declare const TreemapChart: import("react").FunctionComponent;