import type { DataXY } from 'cheminfo-types'; import type { SGGOptions } from 'ml-savitzky-golay-generalized'; export interface SecondDerivativeFilter { name: 'secondDerivative'; options?: SecondDerivativeOptions; } export type SecondDerivativeOptions = Omit; /** * Calculate the second derivative using Savitzky–Golay filter. * @param data * @param options */ export declare function secondDerivative(data: DataXY, options?: SecondDerivativeOptions): { data: DataXY; }; //# sourceMappingURL=secondDerivative.d.ts.map