import type { NumberArray } from 'cheminfo-types'; /** * Return min and max values of an array. * @param array - array of number * @returns - Object with 2 properties, min and max. */ export declare function xMinMaxValues(array: NumberArray): { min: number; max: number; }; //# sourceMappingURL=xMinMaxValues.d.ts.map