import { Parameter } from "./../index";
export interface AnnotationRectangleRectangleInterface {
    height?: number;
    width?: number;
    x?: number;
    y?: number;
}
export declare class AnnotationRectangleRectangle implements AnnotationRectangleRectangleInterface, Parameter {
    height?: number;
    width?: number;
    x?: number;
    y?: number;
    constructor(data: any);
    static getHeightDefault(): number;
    static getHeightDescription(): string;
    static getWidthDefault(): number;
    static getWidthDescription(): string;
    static getXDefault(): number;
    static getXDescription(): string;
    static getYDefault(): number;
    static getYDescription(): string;
    static fromJson(data: any): AnnotationRectangleRectangle;
    toJson(): any;
    clone(): AnnotationRectangleRectangle;
}
