import type { SpectrumOneDimensionColor } from '@zakodium/nmrium-core'; import type { UsedColors } from '../../../types/UsedColors.js'; interface BaseColorOptions { usedColors?: UsedColors; colors?: SpectrumOneDimensionColor[]; } interface ColorOptions extends BaseColorOptions { regenerate?: false; } interface RandomColorOptions extends BaseColorOptions { regenerate: true; random?: boolean; } export declare function get1DColor(spectrum: any, options: ColorOptions | RandomColorOptions): { color: string; }; export {}; //# sourceMappingURL=get1DColor.d.ts.map