export default class Point { X: number; Y: number; constructor(x: number, y: number); MoveH(offsetX: number): Point; }