import { types } from '@babel/core'; import { NodePath } from '@babel/traverse'; export default function dynamic({ types: t }: { types: typeof types; }): { inherits: {}; visitor: { Import(path: NodePath): void; }; };