import type { DataXY } from 'cheminfo-types'; import { xRescale } from 'ml-spectra-processing'; export interface RescaleFilter { name: 'rescale'; options?: RescaleOptions; } export type RescaleOptions = Omit[1], undefined>, 'output'>; /** * Center the mean * @param data * @param options */ export declare function rescale(data: DataXY, options?: RescaleOptions): { data: DataXY; }; //# sourceMappingURL=rescale.d.ts.map