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