import ShapeBase from './base'; declare class Polygon extends ShapeBase { type: string; canFill: boolean; canStroke: boolean; createPath(context: any, targetAttrs: any): void; } export default Polygon;