1 | import 'react';
|
2 | import { GaugeOptions as Options } from '@antv/g2plot/lib/plots/gauge';
|
3 | import { Statistic } from '@antv/g2plot/lib/types';
|
4 | import { BasePlotOptions } from '../createPlot';
|
5 | interface GaugeOptions extends BasePlotOptions, Options {
|
6 | /** 该属性是g2Plot@1.0属性,即将废弃,请使用percent替代 */
|
7 | value?: number;
|
8 | statistic?: Statistic | Record<string, any>;
|
9 | }
|
10 | export { GaugeOptions };
|
11 | declare const _default: import("react").ForwardRefExoticComponent<GaugeOptions & import("react").RefAttributes<any>>;
|
12 | export default _default;
|