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