import type { FunctionDefinition } from '../../definition_types'; /** * Calculates the cosine similarity between two dense_vectors. * * @example * from colors * | where color != "black" * | eval similarity = v_cosine(rgb_vector, [0, 255, 255]) * | sort similarity desc, color asc */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=v_cosine.d.ts.map