import type { FunctionDefinition } from '../../definition_types'; /** * Returns true if the first argument * contains the second argument. * This is the inverse of RANGE_WITHIN; equivalent to `RANGE_WITHIN(b, a)`. * Supports (date_range, date) and (date_range, date_range). The first argument must be a date_range. * * @example * FROM employees * | WHERE RANGE_CONTAINS(TO_DATE_RANGE("1985-02-01..1985-03-01"), hire_date) * | KEEP emp_no, hire_date * | SORT emp_no */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=range_contains.d.ts.map