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