import { PluginOption } from 'vite'; export interface Tweaks { plugin: PluginOption; externals: string[]; } export declare function setTweaks(tweaks: Tweaks): void; export declare function getTweaks(): Tweaks;