import { FindOperator } from "../FindOperator"; /** * Find Options Operator. * Used to negate expression. * * @example * { title: Not("hello") } * * @param value */ export declare function Not(value: T | FindOperator): FindOperator;