import { Expr2 } from "../Expr2.js";
import { Expr } from "../Expr.js";
import { IfcExpressionContext } from "../../context/IfcExpressionContext.js";
import { StringValue } from "../../value/StringValue.js";
import { ExprType } from "../../type/ExprType.js";
import { ExprStringBuilder } from "../ExprStringBuilder.js";
export declare class StringConcatExpr extends Expr2<StringValue, StringValue, StringValue> {
    constructor(left: Expr<StringValue>, right: Expr<StringValue>);
    calculateResult(ctx: IfcExpressionContext, localCtx: Map<string, any>, left: StringValue, right: StringValue): StringValue;
    protected buildExprString(builder: ExprStringBuilder): void;
    getType(): ExprType;
}
