/** * Returns the closest point to the array of 2d points or if the array is empty * returns undefined. * @param p * @param ps */ declare function getClosestTo(p: number[], ps: number[][]): number[] | undefined; export { getClosestTo };