import type { ScreenPoint } from "../types.js"; export declare function samePoint(left: ScreenPoint, right: ScreenPoint): boolean; export declare function orderedSelection(anchor: ScreenPoint, current: ScreenPoint): { start: ScreenPoint; end: ScreenPoint; };