import { GetColumn } from '../value_expressions/get_column_parsing'; import { GetProvided } from '../value_expressions/get_provided_parsing'; import { InsideParentheses } from './inside_parentheses'; import { Literal } from '../literals/literal'; export declare type Negatable = Literal | GetColumn | GetProvided | InsideParentheses; export interface Negation { negated: Negatable; kind: 'negation'; } export declare function createNegation(negated: Negatable): Negation; export declare function createNegationParser(negatableParser: any): any;