import { GenericType } from "../../Common/Type"; import { IExpression } from "./IExpression"; export declare class ParameterExpression implements IExpression { name: string; type: GenericType; itemType?: GenericType; constructor(name: string, type?: GenericType); toString(): string; clone(replaceMap?: Map): ParameterExpression; hashCode(): number; }