import { IPoint } from '@vue-dnd-kit/core';

export declare const getDelta: (pointA: IPoint, pointB: IPoint) => IPoint;
export declare const getDirection: (delta: IPoint) => 'up' | 'right' | 'down' | 'left';
export declare const getAngle: (pointA: IPoint, pointB: IPoint) => number;
