import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { InFunctionType } from './in-function-types'; import { WhereValue } from '../where-value'; export declare class In implements IWhereComponent { readonly Column: Column; readonly Values: WhereValue[]; constructor(column: Column, values: WhereValue[]); toString(): string; }