import type { Point } from '../types'; /** * Function to check if two points are the same in line and ruler mode * or check two point compare */ export declare const isSamePoints: (points: [Point, Point]) => boolean;