1 | import 'react';
|
2 | import { TreemapOptions as Options } from '@antv/g2plot/lib/plots/treemap';
|
3 | import { BasePlotOptions } from '../createPlot';
|
4 | import { TooltipAPIOptions, LabelAPIOptions } from './core/interface';
|
5 | interface TreemapOptions extends Options, BasePlotOptions {
|
6 |
|
7 | maxLevel?: number;
|
8 | tooltip?: TooltipAPIOptions;
|
9 | label?: LabelAPIOptions;
|
10 | }
|
11 | export { TreemapOptions };
|
12 | declare const _default: import("react").ForwardRefExoticComponent<TreemapOptions & import("react").RefAttributes<any>>;
|
13 | export default _default;
|