import { Column } from "../column"; import { ColumnType } from '../column-types'; import { Comparitor } from "./comparitor"; import { IWhereComponent } from "./where-component"; import { WhereValue } from "./where-value"; export declare class WhereFilter implements IWhereComponent { readonly Column: Column; readonly Comparitor: Comparitor; readonly Value?: WhereValue; constructor(column: Column, comparitor: Comparitor, value?: WhereValue); toString(): string; }