import { PluginObj } from '@babel/core'; import { ResolvedOptions } from '../types'; declare type PluginState = Record & { opts: Partial; file: any; }; export default function plugin(): PluginObj; export {};