import type { MDCData, MDCParseOptions, MDCRoot, Toc } from '../types'; export declare const parseMarkdown: (md: string, opts?: MDCParseOptions) => Promise<{ data: MDCData; body: MDCRoot; excerpt: MDCRoot | undefined; toc: Toc | undefined; }>; export declare function contentHeading(body: MDCRoot): { title: string; description: string; };