import { Plot } from '../../core/plot'; import { PathOptions } from './types'; import { PathLayer } from '../../layers/path-layer'; import { LegendOptions, Source } from '../../types'; import { LayerGroup } from '../../core/layer/layer-group'; export type { PathOptions }; export declare class Path extends Plot { /** * 默认配置项 */ static DefaultOptions: Partial; /** * 图表类型 */ type: import("../../types").PlotType; /** * 路径图层 */ pathLayer: PathLayer; /** * 获取默认配置 */ protected getDefaultOptions(): Partial; /** * 创建图层 */ protected createLayers(source: Source): LayerGroup; /** * 更新图层 */ protected updateLayers(options: PathOptions): void; /** * 实现 legend 配置项 */ getLegendOptions(): LegendOptions; }