import { IfcExpressionContext } from "../../context/IfcExpressionContext.js";
import { StringValue } from "../../value/StringValue.js";
import { LiteralExpr } from "../LiteralExpr.js";
import { ExprType } from "../../type/ExprType.js";
import { ExprStringBuilder } from "../ExprStringBuilder.js";
export declare class StringLiteralExpr extends LiteralExpr<StringValue, StringValue> {
    constructor(value: string);
    calculateResult(ctx: IfcExpressionContext): StringValue;
    protected buildExprString(builder: ExprStringBuilder): void;
    getType(): ExprType;
}
