/** * The function performs the fragmentation of all single linear bonds * @param {import('openchemlib').Molecule} molecule - The OCL molecule to be fragmented * @param {object} [options={}] * @param {boolean} [options.calculateHoseCodes=false] - calculating hose code for bonds is quite time consuming * @param {string} [options.parentIDCode=molecule.getIDCode()] * @returns Results fragmentation of acyclic bonds */ export function fragmentAcyclicBonds(molecule: import("openchemlib").Molecule, options?: { calculateHoseCodes?: boolean | undefined; parentIDCode?: string | undefined; }): { atomMap: any[]; idCode: any; parentIDCode: string; cleavedBonds: { index: number; order: number; atom1: number; atom2: number; }[]; mfInfo: import("mf-parser").MFInfo> | import("mf-parser").MFInfoWithParts>; fragmentType: string; }[]; //# sourceMappingURL=fragmentAcyclicBonds.d.ts.map