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