import { Column } from '../../column'; import { IWhereComponent } from '../where-component'; import { BetweenFunctionType } from './between-function-types'; import { WhereValue } from '../where-value'; export declare class Between implements IWhereComponent { readonly Column: Column; readonly From: WhereValue; readonly To: WhereValue; constructor(column: Column, from: WhereValue, to: WhereValue); toString(): string; }