import * as ts from'typescript';
/**
* Returns a Generator that walks most of the AST (the part that matters for gathering all references) and emits Nodes
*
* TODO is this function worth it?
*/export declare functionwalkMostAST(node: ts.Node): IterableIterator<ts.Node>;