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