import type { LightLogger } from 'cheminfo-types'; import type { Molecule } from 'openchemlib'; export interface GetMoleculeWithHOptions { maxNbAtoms: number; logger: LightLogger; } /** * Expand all the implicit hydrogens and ensure chiral bonds on heterotopic bonds * @param molecule * @param options * @returns */ export declare function getMoleculeWithH(molecule: Molecule, options: GetMoleculeWithHOptions): Molecule; //# sourceMappingURL=getMoleculeWithH.d.ts.map