import { PlywoodValue } from '../datatypes'; import { SQLDialect } from '../dialect/baseDialect'; import { ChainableExpression, Expression, ExpressionJS, ExpressionValue } from './baseExpression'; export declare class AbsoluteExpression extends ChainableExpression { static op: string; static fromJS(parameters: ExpressionJS): AbsoluteExpression; constructor(parameters: ExpressionValue); protected _calcChainableHelper(operandValue: any): PlywoodValue; protected _getSQLChainableHelper(dialect: SQLDialect, operandSQL: string): string; specialSimplify(): Expression; } //# sourceMappingURL=absoluteExpression.d.ts.map