import type { MeasurementVariable, TextData } from 'cheminfo-types'; import type { LogAndSettings } from './parseLogAndSettings.ts'; /** * some files may only store data */ export interface MPT { name?: string; nbOfHeaderLines?: number; settings?: LogAndSettings['settings']; log?: LogAndSettings['log']; data: { variables: Record; }; } /** * Parses BioLogic MPT (with or without the header, only data files) * @param data - as a string, Buffer, ArrayBuffer. * @returns JSON Object with parsed data */ export declare function parseMPT(data: TextData): MPT; //# sourceMappingURL=parseMPT.d.ts.map