export function distanceTwoPoints(x1: any, y1: any, x2: any, y2: any): number; export function distanceTwoPointsVector2(point1: any, point2: any): number; export function angleBetweenTwoPoints(x1: any, y1: any, x2: any, y2: any): number; export function angleBetweenTwoPointsVector2(point1: any, point2: any): number; export function angleBetweenTwoPointsDegrees(x1: any, y1: any, x2: any, y2: any): number; export function angleBetweenTwoPointsVector2Degrees(point1: any, point2: any): number; export function distanceBetweenTwoCirclesFromCircle(circle1: any, circle2: any): number; export function distanceBetweenTwoCircles(x1: any, y1: any, radius1: any, x2: any, y2: any, radius2: any): number; export function circleArea(radius: any): number; export function circlePerimeter(radius: any): number; export function distanceBetweenTwoRectanglesFromBounds(rect1: any, rect2: any): number; export function distanceBetweenTwoRectangles(x1: any, y1: any, width1: any, height1: any, x2: any, y2: any, width2: any, height2: any): number; export function angleBetweenTwoRectanglesFromBounds(rect1: any, rect2: any): number; export function angleBetweenTwoRectangles(x1: any, y1: any, width1: any, height1: any, x2: any, y2: any, width2: any, height2: any): number; export function rectangleArea(width: any, height: any): number; export function rectanglePerimeter(width: any, height: any): number; export function rectanglePerimeterFromBounds(rectangle: any): number; export function rectangleVertices(x: any, y: any, width: any, height: any): { x: any; y: any; }[]; export function rectangleVerticesFromBounds(rectangle: any): { x: any; y: any; }[]; export function rectangleCenterX(x: any, width: any): any; export function rectangleCenterY(y: any, height: any): any; export function rectangleCenter(x: any, y: any, width: any, height: any): { x: any; y: any; }; export function rectangleCenterXFromBounds(rectangle: any): any; export function rectangleCenterYFromBounds(rectangle: any): any; export function rectangleCenterFromBounds(rectangle: any): { x: any; y: any; };