import type { Plugin } from 'vite';
import type { PluginOptions } from './types';
/**
 * Vue 路由自动生成插件
 * @param options 插件配置选项
 * @returns Vite 插件
 */
declare function VueAutoRouter(options?: PluginOptions): Plugin;
export default VueAutoRouter;
export type { PluginOptions };
//# sourceMappingURL=index.d.ts.map