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 { constructor(left: Expr, right: Expr); calculateResult(ctx: IfcExpressionContext, localCtx: Map, left: StringValue, right: StringValue): StringValue; protected buildExprString(builder: ExprStringBuilder): void; getType(): ExprType; }