import type { DataXY, PointXY } from 'cheminfo-types'; /** * Finds the closest point * @param data - x array should be sorted and ascending * @param target - target to search * @returns - closest point */ export declare function xyFindClosestPoint( /** points */ data: DataXY, target: number): PointXY; //# sourceMappingURL=xyFindClosestPoint.d.ts.map