export declare class Point { x: number; y: number; constructor(x?: number, y?: number); add(point: Point): Point; distanceTo(point: Point): number; }