import type { DoubleArray, DoubleMatrix } from 'cheminfo-types'; import type { MatrixBoxPlot } from 'ml-spectra-processing'; export interface NormalizedData { ids?: unknown[]; matrix: DoubleMatrix; meta?: unknown[]; x: DoubleArray; } export interface BoxPlotData extends MatrixBoxPlot { x: DoubleArray; } export declare function getBoxPlotData(normalizedData: NormalizedData): BoxPlotData; //# sourceMappingURL=getBoxPlotData.d.ts.map