/** * * @param {import('openchemlib').Molecule} molecule * @param {object} [options={}] * @param {boolean} [options.includeToxicities=false] * @param {boolean} [options.includeDruglikeness=false] */ export function getProperties(molecule: import("openchemlib").Molecule, options?: { includeToxicities?: boolean | undefined; includeDruglikeness?: boolean | undefined; }): { acceptorCount: any; donorCount: any; logP: any; logS: any; polarSurfaceArea: any; rotatableBondCount: any; stereoCenterCount: any; mw: number; mf: string; }; //# sourceMappingURL=getProperties.d.ts.map