import Shape from './Shape';
export default class Polygon extends Shape {
    type: number;
    constructor(item: any, index: number);
    get ctrlsData(): any[];
}
