/** * Given two points, returns the bisect point of the line traced between them * @param pointA - * @param pointB - */ export declare const calculateLineBisect: (pointA: { x: number; y: number; }, pointB: { x: number; y: number; }) => { x: number; y: number; };