import type { Point } from '../types'; interface GetMovedPointsProp { prevPoints: Point[]; editStartPoint: Point; currentPoint: Point; } export declare function getMovedPoints({ prevPoints, editStartPoint, currentPoint }: GetMovedPointsProp): Point[]; export {};