import type { KnowledgeGraph } from '../contracts/graph.js'; export interface GraphDiffFormatOptions { limit?: number; } export declare function diffGraphs(baselineGraph: KnowledgeGraph, currentGraph: KnowledgeGraph, options?: GraphDiffFormatOptions): string;