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