/** * Get the shortest path between each pair of atoms in the molecule * @param {import('openchemlib').Molecule} molecule * @param {object} [options={}] * @param {string} [options.fromLabel='H'] * @param {string} [options.toLabel='H'] * @param {number} [options.maxLength=4] * @returns {Array} A matrix containing on each cell (i,j) the shortest path from atom i to atom j */ export function getShortestPaths(molecule: import("openchemlib").Molecule, options?: { fromLabel?: string | undefined; toLabel?: string | undefined; maxLength?: number | undefined; }): Array; //# sourceMappingURL=getShortestPaths.d.ts.map