import type { DataXY } from 'cheminfo-types'; import type { PointWithIndex } from '../types/index.ts'; import type { XGetFromToIndexOptions } from '../x/xGetFromToIndex.ts'; /** * Finds all the min values * If the values are equal the middle * of the equal part will be the position of the signal! * @param data - Object that contains property X (an ordered increasing array) and y (an arraY) * @param options - Object with from and to properties * @returns - Array of points. */ export declare function xyMinimaY(data: DataXY, options?: XGetFromToIndexOptions): PointWithIndex[]; //# sourceMappingURL=xyMinimaY.d.ts.map