import type { FunctionDefinition } from '../../definition_types'; /** * Use `MATCH` to perform a match query on the specified field or expression. * Using `MATCH` is equivalent to using the `match` query in the Elasticsearch Query DSL. * * @example * FROM books * | WHERE MATCH(author, "Faulkner") * * @example * FROM books * | WHERE MATCH(title, "Hobbit Back Again", {"operator": "AND"}) * | KEEP title; */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=match.d.ts.map