import { HoistProps, LayoutProps, TestSupportProps } from '@xh/hoist/core'; import './TreeMap.scss'; import { TreeMapModel } from './TreeMapModel'; export interface TreeMapProps extends HoistProps, LayoutProps, TestSupportProps { } /** * Component for rendering a TreeMap. * * It is a managed wrapper around a Highcharts TreeMap visualization, which renders * records from a Store and optionally binds to a GridModel. * * @see TreeMapModel */ export declare const TreeMap: import("react").FC>, treeMap: import("@xh/hoist/core").ElementFactory>;