import type { FunctionDefinition } from '../../definition_types'; /** * Returns true if the input expression yields no non-null values within the current aggregation context. Otherwise it returns false. * * @example * FROM employees * | WHERE emp_no == 10020 * | STATS is_absent = ABSENT(languages) * * @example * FROM employees * | STATS is_absent = ABSENT(salary) BY languages * * @example * FROM employees * | WHERE emp_no == 10020 * | STATS is_absent = TO_INTEGER(ABSENT(languages)) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=absent.d.ts.map