import { GisChartStyle } from '@shujujiang/schemas/widget/style'; import { Bubble, ScatterSymbolLabel } from '../../scatter/bubble/style'; import { MapLine } from '../../map/linemap/style'; export declare class MapPath extends MapLine { /** * 线条最大宽度 * @title 最大宽度 * @order 60 * @ignore */ maxWidth?: number; } export declare class SimplePathStyle extends GisChartStyle { /** * 线条样式 * @title 线 * @order 79 */ line?: MapPath; /** * 气泡设置 * @title 气泡 * @order 80 */ bubble?: Bubble; /** * 数据点标签 * @title 标签 * @order 110 */ label: ScatterSymbolLabel; }