/** * Returns the squared distance between the given point and line segment. * @param p a point * @param l a line */ declare function squaredDistanceBetweenPointAndLineSegment(p: number[], l: number[][]): number; export { squaredDistanceBetweenPointAndLineSegment };