import { type ValidationIssue } from '@vibe-agent-toolkit/agent-schema'; import type { LinkResolution } from '../walk-link-graph.js'; /** * Map walker exclusions to validation issues by routing each through the * intent-aware engine. Exclusions whose intent is acceptable (navigational * directory link, pattern-excluded reference) produce no issue. */ export declare function walkerExclusionsToIssues(exclusions: readonly LinkResolution[], locationRoot: string): ValidationIssue[]; /** * Emit one LINK_DEFERRED_ARTIFACT info issue per deferred asset path. * * Routed through the shared materializer so severity/fix/reference and the * description headline come from CODE_REGISTRY. */ export declare function deferredAssetsToIssues(deferredAssets: readonly string[], locationRoot: string): ValidationIssue[]; //# sourceMappingURL=walker-to-issues.d.ts.map