import { NumberArray } from 'cheminfo-types';
/**
 * Returns the Soergel distance between vectors a and b
 * @link [Soergel algorithm](https://www.orgchm.bas.bg/)
 * @param a - first vector
 * @param b - second vector
 *
 */
export default function soergel(a: NumberArray, b: NumberArray): number;
//# sourceMappingURL=soergel.d.ts.map