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