import { ParsedFile, GeneratorOptions, DependencyGraph, GraphOptions } from './types';
export declare function generateMarkdown(parsedFile: ParsedFile, _options?: GeneratorOptions): string;
export declare function getOutputPath(inputPath: string, customOutput?: string): string;
/**
 * Generate comprehensive dependency graph markdown
 */
export declare function generateDependencyMarkdown(graph: DependencyGraph, options?: GraphOptions): string;
