import { Point } from "./point";
import { MarkupAnnotation } from "./markupAnnotation";
export declare class UnderlineAnnotation extends MarkupAnnotation {
    'quadPoints': Array<Point>;
    static discriminator: any;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
