/**
 * A 2-dimensional point representing integer pixel coordinates from a top-left origin.
 */
export interface Point {
    /**
     * The x-coordinate.
     */
    readonly x: number;
    /**
     * The y-coordinate.
     */
    readonly y: number;
}
