import { Clause, NotClause, NotClauseOperator, Position } from '../types'; export declare const notClause: (clause: Clause) => NotClause; export declare const notClauseInternal: (clause: Clause, operator: NotClauseOperator, position?: Position | null) => NotClause;