import { Rectangle, Parameter } from "./../index";
export interface PositionSimpleShapeAnnotationInterface {
    rectangle?: Rectangle;
}
export declare class PositionSimpleShapeAnnotation implements PositionSimpleShapeAnnotationInterface, Parameter {
    rectangle?: Rectangle;
    constructor(data: any);
    static getRectangleDescription(): string;
    static fromJson(data: any): PositionSimpleShapeAnnotation;
    toJson(): any;
    clone(): PositionSimpleShapeAnnotation;
}
