import type { TreeMapChartSlots, TreeMapConfig, TreeMapContextConfig, TreemapChartLegendConfig } from '../types/treemap-chart.config.js'; import type { TreeMapProps } from '../types/treemap.js'; /** * Builds a LegendConfiguration based on context and slots * * @param contextLegendConfig - legend config context * @param slotsLegendConfig - legend config props */ export declare function getLegendConfiguration(contextLegendConfig?: TreemapChartLegendConfig, slotsLegendConfig?: TreemapChartLegendConfig): TreemapChartLegendConfig; /** * Build treemap chart configuration. * * @param props - config from props * @param config - config from context * @param slots - config from components slots * @returns TreeMapConfig */ export declare const buildTreeMapChartConfig: (props: TreeMapProps, config: TreeMapContextConfig, slots: TreeMapChartSlots) => TreeMapConfig;