import { IExpression } from "./IExpression"; import { GenericType } from "../../Common/Type"; export declare class TernaryExpression implements IExpression { logicalOperand: IExpression; trueOperand: IExpression; falseOperand: IExpression; readonly type: GenericType; constructor(logicalOperand: IExpression, trueOperand: IExpression, falseOperand: IExpression); toString(): string; clone(replaceMap?: Map): TernaryExpression; hashCode(): number; }