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