import type { TreeMapElementRef, TreeMapProps } from './types/treemap.js'; /** * The `TreeMap` visualizes the distribution of hierarchical data. * It uses nested rectangles of different sizes and colors to show * how much each category or subcategory contributes to the whole * data set. * @public */ export declare const TreeMap: ((props: TreeMapProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => React.ReactElement | null) & { Legend: { (props: import("./types/treemap-chart.config.js").TreemapChartLegendConfig): null; displayName: string; }; Tooltip: { (): null; displayName: string; }; Intent: { (props: import("../../core/slots/Intent/Intent.js").IntentProps): null; displayName: string; }; EmptyState: ({ children }: import("../core/slots/chart-states/EmptyStateSlot.js").EmptyStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; ErrorState: ({ children }: import("../core/slots/chart-states/ErrorStateSlot.js").ErrorStateSlotProps) => import("react/jsx-runtime.js").JSX.Element; };