import { SelectSql } from '../../../dml'; export interface NotInDescription { notIn: { field: T; values: T[] | SelectSql; }; } export declare const isNotInDescription: (val: any) => val is NotInDescription;