/** * A class to represent an X,Y point */ export declare class Point { static isEqual(point1: Point, point2: Point): boolean; readonly x: number; readonly y: number; constructor(x: number, y: number); }