import type { Info1D, NMRRange, NMRSignal1D } from '@zakodium/nmr-types'; import type { Spectrum1D } from '@zakodium/nmrium-core'; import type { UsedColors } from '../../../../types/UsedColors.js'; interface ResurrectSpectrumOptions { info: Partial; usedColors: UsedColors; from?: number; to?: number; spectrumID?: string; } declare function resurrectSpectrumFromRanges(ranges: NMRRange[], options: ResurrectSpectrumOptions): Spectrum1D | undefined; declare function resurrectSpectrumFromSignals(signals: NMRSignal1D[], options: ResurrectSpectrumOptions): Spectrum1D | undefined; export { resurrectSpectrumFromRanges, resurrectSpectrumFromSignals }; //# sourceMappingURL=resurrectSpectrum.d.ts.map