import type { Plugin } from 'vite';
interface PluginOptions {
    themeFile?: string;
    iconFile?: string;
    themeConfig?: Record<string, string>;
}
declare function vitePluginTheme(options: PluginOptions): Plugin;
export default vitePluginTheme;
