import type { FunctionDefinition } from '../../definition_types'; /** * Performs a KQL query. Returns true if the provided KQL query string matches the row. * * @example * FROM books * | WHERE KQL("author: Faulkner") * * @example * FROM employees * | WHERE KQL("mary", {"case_insensitive": true, "default_field": "first_name", "boost": 1.5}) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=kql.d.ts.map