import { type RehypePluginOptions } from './rehype.ts'; import { type RemarkPluginOptions } from './remark.ts'; export interface CompileMdxOptions { /** * Options for the base Rehype plugins */ rehype?: RehypePluginOptions; /** * Options for the base Remark plugins */ remark?: RemarkPluginOptions; /** * @link https://mdxjs.com/packages/mdx/#compileoptions */ baseUrl?: string | URL | null | undefined; } export declare function compileMdx(source: { path: string; content: string; }, options?: CompileMdxOptions): Promise;