import { Polygon, PolygonShape } from 'zrender'; import { BaseShape } from '../types'; export type IPolygonShapeOptions = BaseShape; /** * 创建闭合多边型 * @param options * @returns */ export declare function createPolygon(options?: IPolygonShapeOptions): Polygon;