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