import { Rectangle } from "./rectangle";
import { Color } from "./color";
import { MarkupAnnotation } from "./markupAnnotation";
export declare class CommonFigureAnnotation extends MarkupAnnotation {
    'interiorColor': Color;
    'frame': Rectangle;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
