import { Quadrilateral, Rectangle, Parameter } from "./../index";
export interface PositionMarkupAnnotationInterface {
    pathElement?: Array<Rectangle>;
    quadrilateral?: Array<Quadrilateral>;
}
export declare class PositionMarkupAnnotation implements PositionMarkupAnnotationInterface, Parameter {
    pathElement?: Array<Rectangle>;
    quadrilateral?: Array<Quadrilateral>;
    constructor(data: any);
    static getPathElementDefault(): Array<Rectangle>;
    static getPathElementDescription(): string;
    static getQuadrilateralDefault(): Array<Quadrilateral>;
    static getQuadrilateralDescription(): string;
    static fromJson(data: any): PositionMarkupAnnotation;
    toJson(): any;
    clone(): PositionMarkupAnnotation;
}
