import * as _nuxt_schema from '@nuxt/schema'; import { Theme as Theme$1 } from 'shiki-es'; type Theme = Theme$1 | Record; interface UnistPlugin { src?: string; options?: Record; } interface ModuleOptions { remarkPlugins?: Record; rehypePlugins?: Record; highlight?: { theme?: Theme; highlighter?: string; } | false; headings?: { anchorLinks?: { [heading in 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6']?: boolean; }; }; components?: { prose?: boolean; map?: Record; }; } declare const _default: _nuxt_schema.NuxtModule; declare module '@nuxt/schema' { interface PublicRuntimeConfig { mdc: { components: { prose: boolean; map: Record; }; headings: ModuleOptions['headings']; }; } interface ConfigSchema { runtimeConfig: { public?: { mdc: { components: { prose: boolean; map: Record; }; }; headings: ModuleOptions['headings']; }; }; } } export { _default as default };