/** * Defines a point inside the canvas, x / y coordinate. */ export declare class Point { x: number; y: number; constructor(x?: number, y?: number); /** * Set the point to specific x and y coordinate. */ setPoint(x: number, y: number): void; }