/**
 * Graph-Deep Diff Analyzer
 * Compare architectural states and detect problematic changes
 */
import { GraphDiffOptions, GraphDiffReport } from './graph-diff-types';
/**
 * Analyze architectural differences between two states
 */
export declare function analyzeGraphDiff(projectPath: string, options: GraphDiffOptions): Promise<GraphDiffReport>;
