import type { OperatorDefinition } from '../../definition_types'; /** * Returns `true` if the value is `NULL`, `false` otherwise. * * Note: If a field is only in some documents it will be `NULL` in the documents that did not contain it. * * @example * FROM employees * | WHERE birth_date IS NULL */ declare const definition: OperatorDefinition; export default definition; //# sourceMappingURL=is_null.d.ts.map