import type { DataXY, DoubleArray, FromTo } from 'cheminfo-types'; import type { FilterXYType } from 'ml-signal-processing'; interface NormalizeOptions { from?: number; to?: number; numberOfPoints?: number; filters?: FilterXYType[]; exclusions?: FromTo[]; applyRangeSelectionFirst?: boolean; } export interface AllowedBoundary { x: { min: number; max: number; }; y: { min: number; max: number; }; } export interface NormalizedResult { data: DataXY; allowedBoundary: AllowedBoundary; } /** * * @private * @param input * @param [options={}] */ export declare function getNormalized(input: DataXY, options?: NormalizeOptions): NormalizedResult; export {}; //# sourceMappingURL=getNormalized.d.ts.map