import type { Range } from '@zakodium/nmr-types'; import type { Spectrum1D } from '@zakodium/nmrium-core'; import type { OptionsXYAutoRangesPicking } from 'nmr-processing'; export interface AutoRangesDetectionOptions { windowFromIndex?: number; windowToIndex?: number; peakPicking?: Omit; rangePicking?: OptionsXYAutoRangesPicking['ranges']; } export declare function autoRangesDetection(spectrum: Spectrum1D, options?: AutoRangesDetectionOptions): Range[]; //# sourceMappingURL=autoRangesDetection.d.ts.map