import { Parameter } from "./../index";
export interface AnnotationPointPointInterface {
    x?: number;
    y?: number;
}
export declare class AnnotationPointPoint implements AnnotationPointPointInterface, Parameter {
    x?: number;
    y?: number;
    constructor(data: any);
    static getXDefault(): number;
    static getXDescription(): string;
    static getYDefault(): number;
    static getYDescription(): string;
    static fromJson(data: any): AnnotationPointPoint;
    toJson(): any;
    clone(): AnnotationPointPoint;
}
