import { Resource, ResourceLink } from '../../model/note'; import type { ResolvedLink } from '../target'; import { ExportContext } from '../types'; /** * Pre-resolves a link against the artifact set. The result tells the * target's `SourceLinkRewriter` exactly what shape this link takes in the * output address space, so the rewriter only has to decide how to *emit* * (not where things live). * * Returns `null` for external links — those are passed through verbatim, * no target involvement. */ export declare const resolveExportLink: (link: ResourceLink, note: Resource, context: ExportContext) => ResolvedLink | null; //# sourceMappingURL=resolve-link.d.ts.map