import * as ts from "typescript";
import { Transformation } from "../../output/transformation";
import { NodeVisitor } from "../visitor";
export declare class ConstructorDeclarationVisitor extends NodeVisitor {
    visit(node: ts.ConstructorDeclaration): Transformation[];
    private getBodyChildren;
    private parseParameters;
    private getParentClassName;
}
