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