import type { DataXY } from 'cheminfo-types'; interface XYMaxMergeOptions { /** * Window for abscissas to merge * @default 0.001 */ groupWidth?: number; } /** * Merge abscissas values on similar ordinates and weight the group of abscissas * @param data - object containing 2 properties x and y * @param options - options * @returns array of merged and weighted points */ export declare function xyMaxMerge(data: DataXY, options?: XYMaxMergeOptions): DataXY; export {}; //# sourceMappingURL=xyMaxMerge.d.ts.map