import type { ManifestOutput } from './types'; export type ToMarkdownContentOptions = { baseDir: string; outputDir: string; ignoreFragments?: boolean; }; export declare class MarkdownReporter { toMarkdownConntent(manifest: ManifestOutput, { ignoreFragments, baseDir, outputDir }: ToMarkdownContentOptions): string | null; }