/** * Detector: REFERENCE_TARGET_MISSING * * Pure function — no I/O. Consumes a PluginInventory and returns a * ValidationIssue for each cross-component reference in the manifest that * resolves to a path that does not exist on disk. */ import type { ValidationIssue } from '@vibe-agent-toolkit/agent-schema'; import type { PluginInventory } from '../types.js'; export declare function detectReferenceTargetMissing(inv: PluginInventory, locationRoot: string): ValidationIssue[]; //# sourceMappingURL=reference-target-missing.d.ts.map