/** * Gets the position between a given set of points. */ export declare const getMidpoint: (pointA: any, pointB: any) => { x: number; y: number; }; /** * Gets the distance between a given set of points. */ export declare const getDistanceBetweenPoints: (pointA: any, pointB: any) => number; /** * Gets the value between a set of numeric values. */ export declare const between: (min: any, max: any, value: any) => number;