export interface DependencyResult { found: boolean; coordinate: string | null; file: string | null; /** * F-R5-21 (Bundle 16): version actually pinned in the host build * file. Extracted from the direct-coord declaration or resolved via * the version catalog's version.ref alias. null when the dependency * isn't found, or when the version couldn't be parsed (e.g., * dynamic version like `latest.release`). validateIntegration uses * this to warn when host apps lag behind VERSION_INFO.latestStable. */ actualVersion: string | null; } export declare function inspectDependency(projectPath: string, platform: string | undefined, manifest: Record): DependencyResult; //# sourceMappingURL=dependency.d.ts.map