import { FunctionExpression } from "./Expression/FunctionExpression"; import { IExpression } from "./Expression/IExpression"; import { GenericType } from "../Common/Type"; export declare class ExpressionBuilder { static parse(fn: (...items: any[]) => T, paramTypes?: GenericType[], userParameters?: { [key: string]: any; }): FunctionExpression; static parse(fn: string, paramTypes?: GenericType[], userParameters?: { [key: string]: any; }): IExpression; }