import type { KnowledgeGraph } from '../contracts/graph.js'; export declare class DirectedGraphRequiredError extends Error { readonly code = "DIRECTED_GRAPH_REQUIRED"; constructor(operation: string); } export declare function requireDirectedGraph(graph: KnowledgeGraph, operation: string): void;