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 PieOptions extends Options, BasePlotOptions {
|
6 | tooltip?: TooltipAPIOptions;
|
7 | label?: LabelAPIOptions;
|
8 | legend?: LengendAPIOptions;
|
9 | }
|
10 | export { PieOptions };
|
11 | declare const _default: import("react").ForwardRefExoticComponent<PieOptions & import("react").RefAttributes<any>>;
|
12 | export default _default;
|