import { ConditionExpressionTemplate, NotExpression } from './index.js'; /** * Creates a NOT expression template that negates a given condition expression. */ declare function not(condition: ConditionExpressionTemplate): NotExpression; export { not };