/**
 * An object containing `x` and `y` properties for the position of an element.
 */
export interface PositionObject {
    /**
     * The X position.
     */
    x: number;
    /**
     * The Y position.
     */
    y: number;
}
export default PositionObject;
