export declare class Point {
    x: any;
    y: any;
    constructor(x: any, y: any);
    set(x: number, y: number): void;
}
