import { Integer } from './Integer';
/** Cartesian coordinates in pixels with a top-left origin. */
export interface XY {
    x: Integer;
    y: Integer;
}
