/** * Calculate the molecular formula in 'chemcalc' notation taking into account fragments, isotopes and charges * @param {OCL.Molecule} [molecule] - an instance of OCL.Molecule * @returns {} */ import type { Molecule } from 'openchemlib'; type AtomQuantity = Record; interface AtomsAndParts { atoms: AtomQuantity; parts: AtomQuantity[]; } export declare function getAtoms(molecule: Molecule): AtomsAndParts; export {}; //# sourceMappingURL=getAtoms.d.ts.map