import { PlywoodValue } from '../datatypes'; import { SQLDialect } from '../dialect/baseDialect'; import { ChainableUnaryExpression, Expression, ExpressionJS, ExpressionValue } from './baseExpression'; export declare class LessThanExpression extends ChainableUnaryExpression { static op: string; static fromJS(parameters: ExpressionJS): LessThanExpression; constructor(parameters: ExpressionValue); protected _calcChainableUnaryHelper(operandValue: any, expressionValue: any): PlywoodValue; protected _getSQLChainableUnaryHelper(dialect: SQLDialect, operandSQL: string, expressionSQL: string): string; protected specialSimplify(): Expression; } //# sourceMappingURL=lessThanExpression.d.ts.map