import type { FunctionDefinition } from '../../definition_types'; /** * Returns true if the two arguments overlap. The relation is symmetric — argument order does not matter. Supports all combinations of ranges and corresponding scalar types. When both arguments are scalar values, this is equivalent to `a == b`. * * @example * FROM employees * | WHERE RANGE_INTERSECTS(hire_date, TO_DATE_RANGE("1985-02-01..1985-03-01")) * | KEEP emp_no, hire_date * | SORT emp_no */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=range_intersects.d.ts.map