import { LiteralExpr } from "../LiteralExpr.js"; import { ExprEvalError } from "../ExprEvalResult.js"; import { IfcExpressionContext } from "../../context/IfcExpressionContext.js"; import { ExprType } from "../../type/ExprType.js"; import { ExprStringBuilder } from "../ExprStringBuilder.js"; import { Logical, LogicalValue } from "../../value/LogicalValue.js"; export declare class LogicalLiteralExpr extends LiteralExpr { constructor(value: Logical); protected calculateResult(ctx: IfcExpressionContext): ExprEvalError | LogicalValue; protected buildExprString(builder: ExprStringBuilder): void; getType(): ExprType; }