import { FilterPattern, PluginOption } from 'vite'; type Options = { include?: FilterPattern; exclude?: FilterPattern; env?: Record; /** * @deprecated */ isDebug?: boolean; /** * @deprecated */ changeSource?: (source: string) => string; /** * @deprecated */ expand?: { [key: string]: boolean | undefined; }; }; declare function vitePluginConditionalCompile(opts?: Options): PluginOption[]; export { type Options, vitePluginConditionalCompile as default };