import * as ts from "typescript"; export declare function findNodeByName(source: ts.SourceFile, name: string, root: ts.Node, parent?: ts.Node | undefined): ts.Node | undefined; export declare function printAST(node: ts.Node | undefined, indent?: string): void; export declare function getChildNodes(node: ts.Node): ts.NodeArray;