/** * Generate molecules and calculate predicted properties form a list of smiles and fragments * @param {string} coreSmiles * @param {Array} fragments - Array of {smiles,R1,R2,...} * @param {typeof import('openchemlib')} OCL - openchemlib library * @param {object} [options={}] - Options * @param {Function} [options.onStep] - method to execute each new molecules * @param {boolean} [options.complexity] - returns only the number of molecules to evaluate * @returns {Promise} promise that resolves to molecules or complexity as a number */ export function combineSmiles(coreSmiles: string, fragments: any[], OCL: typeof import("openchemlib"), options?: { onStep?: Function | undefined; complexity?: boolean | undefined; }): Promise; //# sourceMappingURL=combineSmiles.d.ts.map