import { Plugin } from '@rspress/core'; export interface RspressPluginVueOptions { setup?: string; mode?: 'vue2' | 'vue3'; language?: string[]; /** 需要包含编译的vue 文件目录 */ include?: string[]; /** * 指定 vue 版本路径 * ./node_modules/vue */ vuePath?: string; vueLoaderOptions?: any; } export declare function createRepressPluginVue(options: RspressPluginVueOptions | RspressPluginVueOptions[]): { plugin: Plugin; language: string[]; previewCodeTransform: (codeInfo: any) => string | null | undefined; };