import { ILexicalToken } from "./LexicalAnalyzer"; import { GenericType } from "../Common/Type"; import { IExpression } from "./Expression/IExpression"; export declare class SyntacticAnalyzer { static parse(tokens: ILexicalToken[], paramTypes?: GenericType[], userParameters?: { [key: string]: any; }): IExpression; }