import type { TextData } from 'cheminfo-types'; import type { ComplexObject } from '../Types.ts'; export interface MPS { name: string; settings: { variables: ComplexObject; }; log: { variables: ComplexObject; }; } /** * Creates an mps object from an mps file * output is similar to `MPR.settings.variables` * MPS may include one or more techniques * * @param mpsData - pass the file as string, Buffer or Arraybuffer. * @returns json-like object representing the file */ export declare function parseMPS(mpsData: TextData): MPS; //# sourceMappingURL=parseMPS.d.ts.map