import * as ts from "typescript";
import { Transformation } from "../../output/transformation";
import { NodeVisitor } from "../visitor";
export declare class NewExpressionVisitor extends NodeVisitor {
    visit(node: ts.NewExpression): Transformation[];
    private getNewTypes;
    private collectNewArgs;
}
