import { CallExpression } from "./CallExpression";
import { IdentifierLiteralExpression } from "./IdentifierLiteralExpression";
import { Expression } from "./Expression";
export declare class NewExpressioin extends Expression {
    type: string;
    code: any;
    callee: CallExpression | IdentifierLiteralExpression;
    constructor(currentToken: any);
}
