import { type Plugin } from 'vite'; type AnyObject = Record; type Config = { codegen?: boolean; relayConfig?: string | AnyObject; module?: 'esmodule' | 'commonjs'; }; export default function makePlugin(config?: Config): Plugin; export {};