import type { FunctionDefinition } from '../../definition_types'; /** * Returns true if the first argument is within the second argument. Supports (date, date_range) and (date_range, date_range). The second argument must be a date_range. * * @example * FROM employees * | WHERE RANGE_WITHIN(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_within.d.ts.map