import { MDVPluginOptions } from "@mdv/types/mdv-config"; export declare const Compiler: (options: MDVPluginOptions) => { compileMDVFile: (file: string, viteServer?: any) => Promise; compileAllMDVFiles: (dir?: string, viteServer?: any) => Promise; watchAll: (dir?: string, viteServer?: any) => Promise; writeComponentsDTS: (dir?: string) => void; writeGlobalComponentsDTS: (dir?: string) => void; copyComponentsDir: (dir?: string) => void; getMdvFiles: (dir?: string, ext?: string) => string[]; extension: string; cacheDir: string; srcRoot: string; srcName: string; mdvMeta: Map; compiledTimestamps: Map; };