import type * as Babel from '@babel/core'; import type { NodePath } from '@babel/traverse'; import { ImportUtil } from 'babel-import-util'; interface State { importer: ImportUtil; } export default function (babel: typeof Babel): { name: string; visitor: { Program(path: Babel.NodePath, state: State): void; ImportDeclaration(path: Babel.NodePath, state: State): void; }; }; export {};