import { NodePath } from '@babel/core'; import * as t from '@babel/types'; export default function (): { name: string; visitor: { ImportDeclaration(path: NodePath): void; JSXElement(path: NodePath): void; }; };