import { Polyline, PolylineShape } from 'zrender'; import { BaseShape } from '../types'; export type IPolylineShapeOptions = BaseShape; /** * 创建不闭合多边型 * @param options * @returns */ export declare function createPolyline(options?: IPolylineShapeOptions): Polyline;