export declare class Point {
    private x;
    private y;
    constructor(x?: number, y?: number);
    getX(): number;
    getY(): number;
}
