import type { Plugin } from 'vite'; declare type Vars = Record; declare type Style = boolean | 'css'; interface PluginOption { theme?: string; iconBox?: string; modifyVars?: Vars; style?: Style; varsInjectScope?: (string | RegExp)[]; componentPrefix?: string; iconPrefix?: string; } export default function vitePluginArcoImport(options?: PluginOption): Plugin; export {};