import { p as IndexFilePluginOptions } from "../core-t4FMmF2c.js"; import { Plugin } from "vite"; //#region src/vite/index.d.ts interface PluginOptions { /** * Generate index files for accessing content. * * @defaultValue true */ index?: boolean | IndexFilePluginOptions; /** * @defaultValue source.config.ts */ configPath?: string; /** * Update Vite config to fix module resolution of Hanzo Docs * * @defaultValue true */ updateViteConfig?: boolean; /** * Output directory of generated files * * @defaultValue '.source' */ outDir?: string; } declare function mdx(_config?: Record | Promise>, pluginOptions?: PluginOptions): Promise; declare function postInstall(pluginOptions?: PluginOptions): Promise; //#endregion export { PluginOptions, mdx as default, postInstall };