import { LinesLayer } from '../lines-layer'; import { PathLayerOptions } from './types'; export type { PathLayerOptions }; export declare class PathLayer extends LinesLayer { /** * 图层配置项 Keys */ static LayerOptionsKeys: string[]; /** * 图层类型 */ type: import("../..").LayerType; /** * 获取默认配置 */ getDefaultOptions(): Partial; }