/** * Returns the distance between the given point and line. * * see https://en.wikipedia.org/wiki/Distance_from_a_point_to_a_line#Line_defined_by_two_points * @param p a point * @param l a line */ declare function distanceBetweenPointAndLine(p: number[], l: number[][]): number; export { distanceBetweenPointAndLine };