import * as t from '@babel/types'; import { ParseResult } from '@babel/parser'; /** * Adds the plugin invocation to the vite config file * Naive solution: look for an object with a plugins property only inside of a defineConfig call */ export declare function addPluginInvocation({ ast, alias, namespaces, }: { ast: ParseResult; alias: string | null; namespaces: string[]; }): boolean;