import type { Entry } from 'jcampconverter'; /** * Display options for spectroscopy data */ export interface DisplayOptions { xLabel: string; xInverted: boolean; yLabel: string; } /** * Kind object defining how to handle a spectrum */ export interface Kind { normalization?: Record; importation?: { converter: (value: number) => number; }; kind?: string; display: DisplayOptions; } /** * Determines the appropriate Kind based on JCAMP data * @param data - JCAMP entry data * @returns The appropriate Kind or undefined */ export declare function getJcampKind(data: Entry): Kind | undefined; export declare const IR_TRANSMITTANCE: Kind; export declare const IR_ABSORBANCE: Kind; export declare const nmr1H: Kind; export declare const nmr13C: Kind; //# sourceMappingURL=Kinds.d.ts.map