import { ResultUnit } from "../../../../../blp-parser/result-unit.class"; import { GameUnitObject } from "../../../global-objects/game-unit-object.class"; export declare class LogicalExpression { operand1: ResultUnit; operator: string; operand2: ResultUnit; constructor(operand1: ResultUnit, operator: string, operand2: ResultUnit); evaluate(context: GameUnitObject): boolean; getValueFromResultUnit(result: ResultUnit, context: GameUnitObject): string; }