import type { CompileOptions } from '@mdx-js/mdx'; import { type FilterPattern } from '@rollup/pluginutils'; import type { Plugin } from 'vite'; type ApplicableOptions = Omit; interface ExtraOptions { /** * Picomatch patterns to exclude (optional). */ exclude?: FilterPattern | null | undefined; /** * Picomatch patterns to include (optional). */ include?: FilterPattern | null | undefined; } export type Options = ApplicableOptions & ExtraOptions; export declare const createConfig: (options?: Readonly | null | undefined) => Options; /** * Plugin to compile MDX. * * Uses Rolldown. */ export declare const VitePluginMdx: (options?: Readonly | null) => Plugin; export {}; //# sourceMappingURL=vite-plugin-mdx.d.ts.map