import type ts from "typescript"; export interface INode { node: ts.Node; sourceFile: ts.SourceFile; syntaxKind: string; source: string; } export declare type INodePath = { path: string; node: ts.Node; }; export declare type IForeachNodeCallback = (node: INode) => void;