/** * This function returns ringBond, and object that contains information about the bonds of each ring * @param {import('openchemlib').Molecule} molecule - The OCL molecule to be fragmented * @returns Information of ring bonds for each ring in the molecule */ export function getRingsInfo(molecule: import("openchemlib").Molecule): { bonds: { index: number; ringIndex: number; nbRings: any; order: number; isAromatic: boolean; atom1: number; atom2: number; }[]; }[]; //# sourceMappingURL=getRingsInfo.d.ts.map