import { Point } from "./point";
import { PolyIntent } from "./polyIntent";
import { LineEnding } from "./lineEnding";
import { Color } from "./color";
import { MarkupAnnotation } from "./markupAnnotation";
export declare class PolyAnnotation extends MarkupAnnotation {
    'interiorColor': Color;
    'startingStyle': LineEnding;
    'endingStyle': LineEnding;
    'intent': PolyIntent;
    'vertices': Array<Point>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
