export declare class Point { x: any; y: any; constructor({ column, row, x, y }?: { column?: number; row?: number; x?: number; y?: number; }); clone(): Point; assign(other: any): this; get column(): any; get row(): any; set column(column: any); set row(row: any); get length(): number; toString(): string; }