import * as AstTypes from 'ast-types'; import { NodeType, NodePath } from '../types'; export default function forEachNode(t: typeof AstTypes, paths: readonly NodePath[], nodeTypes: readonly NodeType[], iteratee: (path: NodePath) => void): void;