import type { ProductGraph } from '../graph/graph-types.js'; /** * Create a link resolver for cross-module and same-module references. * * @param graph The product graph (used to look up which module a node belongs to) * @returns A function that given a node id and the current module name, * returns a markdown link string */ export declare function createLinkResolver(graph: ProductGraph): (nodeId: string, fromModule: string) => string; //# sourceMappingURL=link-resolver.d.ts.map