/**
 * CLI interface for Graph-Deep Diff Analysis
 * LLM-friendly reporting with rich context and impact scoring
 */
import { GraphDiffOptions } from './graph-diff-types';
/**
 * Get detailed help text for graph diff analysis
 */
export declare function getGraphDiffHelpText(): string;
/**
 * Execute graph diff analysis with LLM-friendly output
 */
export declare function executeGraphDiffAnalysis(projectPath: string, options: GraphDiffOptions): Promise<void>;
