export interface ProjectHealthReport { initialized: boolean; rules: { exists: boolean; count: number; legacyRoot: boolean; }; skills: { exists: boolean; count: number; legacyRoot: boolean; }; memories: { indexExists: boolean; indexLegacyRoot: boolean; moduleCount: number; nestedLayout: boolean; }; summary: { exists: boolean; count: number; }; runs: { total: number; legacySchema: number; runtimeDirExists: boolean; }; warnings: string[]; } export interface ProjectNormalizationResult { configUpgraded: boolean; rules: number; skills: number; memories: number; summary: number; } export declare function inspectProjectHealth(projectRoot: string): ProjectHealthReport; export declare function normalizeProjectTruthSources(projectRoot: string): ProjectNormalizationResult; //# sourceMappingURL=project-health.d.ts.map