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