import { FindOperator } from"../FindOperator";
/**
* Find Options Operator.
* Used to negate expression.
* Example: { title: not("hello") } will return entities where title not equal to "hello".
*/
export declarefunctionNot<T>(value: T | FindOperator<T>): FindOperator<T>;