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