import type { PluginObj, PluginPass, types as BabelTypes } from '@babel/core'; interface PluginPassWithOpts extends PluginPass { opts: { module: string; import: string; export?: string; }; } export default function jsxPragmatic(babel: { types: typeof BabelTypes; }): PluginObj; export {};