/**
 * Takes in array of numbers and a targetX and returns the _index_ of closest number
 */
export declare function findClosestPoint(xValues: number[], targetX: number): number | null;
