import { NumberArray } from 'cheminfo-types';
/**
 * Returns the average of cosine distances between vectors a and b
 * @param a - first vector
 * @param b - second vector
 *
 */
export default function cosine(a: NumberArray, b: NumberArray): number;
//# sourceMappingURL=cosine.d.ts.map