import type { FunctionDefinition } from '../../definition_types'; /** * Scores an expression. Only full text functions will be scored. Returns scores for all the resulting docs. * * @example * FROM books METADATA _score * | WHERE match(title, "Return") AND match(author, "Tolkien") * | EVAL first_score = score(match(title, "Return")) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=score.d.ts.map