import type { MeasurementVariable } from 'cheminfo-types'; /** * MPT returns I Range as a string, and it seems that the number * returned in the binary (MPR) parser maps to it. * This function does this mapping, which is not complete. * @link `[[id:unitsScale]]` * @param experData - pass only the I Range column (object) * @returns - the map to I Range as a string[] */ export declare function mapIRangeToMPT(experData: MeasurementVariable): string[]; /** * maps numeric values in I range or unit to a string * it is important to keep the output as string, * because the numeric values are processed differently * */ export declare function unitsScale(key: 'I_range' | 'Is_unit', val: number): string; //# sourceMappingURL=mapIRangeToMPT.d.ts.map