/**
 * Calculate the angle between two points in degrees
 */
export declare function getAngle(p1: {
  x: number;
  y: number;
}, p2: {
  x: number;
  y: number;
}): number;