import type { DoubleArray, DoubleMatrix } from 'cheminfo-types'; export interface NormalizedData { x: DoubleArray; matrix: DoubleMatrix; } export interface AutocorrelationResult { x: DoubleArray; y: Float64Array; } export declare function getAutocorrelation(normalized: NormalizedData, index: number): AutocorrelationResult; //# sourceMappingURL=getAutocorrelation.d.ts.map