import type { NumberArray } from 'cheminfo-types'; export interface XIsEquallySpacedOptions { /** * The tolerance define what is the allowed difference in percent * @default: 0.05 */ tolerance?: number; } /** * Check if the values are separated always by the same difference * @param array - Monotone growing array of number * @param options */ export declare function xIsEquallySpaced(array: NumberArray, options?: XIsEquallySpacedOptions): boolean; //# sourceMappingURL=xIsEquallySpaced.d.ts.map