import { GenericType } from "../../Common/Type"; import { IExpression } from "./IExpression"; export declare class ValueExpression implements IExpression { readonly value: T; expressionString: string; readonly type: GenericType; constructor(value: T, expressionString?: string); toString(): string; clone(): this; hashCode(): number; }