/** * Returns the squared distance between two 2d points. * @param p a point * @param q another point */ declare function squaredDistanceBetween(p: number[], q: number[]): number; export { squaredDistanceBetween };